mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fixes link to luxon docs
This commit is contained in:
parent
471d7b9420
commit
7be84b7015
|
@ -61,7 +61,7 @@ const versionDescription: INodeTypeDescription = {
|
||||||
properties: [
|
properties: [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
"More powerful date functionality is available in <a href='https://docs.n8n.io/code/expressions/luxon/' target='_blank'>expressions</a>,</br> e.g. <code>{{ $now.plus(1, 'week') }}</code>",
|
"More powerful date functionality is available in <a href='https://docs.n8n.io/code/cookbook/luxon/' target='_blank'>expressions</a>,</br> e.g. <code>{{ $now.plus(1, 'week') }}</code>",
|
||||||
name: 'noticeDateTime',
|
name: 'noticeDateTime',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { includeInputFields } from './common.descriptions';
|
||||||
export const AddToDateDescription: INodeProperties[] = [
|
export const AddToDateDescription: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
"You can also do this using an expression, e.g. <code>{{your_date.plus(5, 'minutes')}}</code>. <a target='_blank' href='https://docs.n8n.io/code/expressions/luxon/'>More info</a>",
|
"You can also do this using an expression, e.g. <code>{{your_date.plus(5, 'minutes')}}</code>. <a target='_blank' href='https://docs.n8n.io/code/cookbook/luxon/'>More info</a>",
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { includeInputFields } from './common.descriptions';
|
||||||
export const CurrentDateDescription: INodeProperties[] = [
|
export const CurrentDateDescription: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
'You can also refer to the current date in n8n expressions by using <code>{{$now}}</code> or <code>{{$today}}</code>. <a target="_blank" href="https://docs.n8n.io/code/expressions/luxon/">More info</a>',
|
'You can also refer to the current date in n8n expressions by using <code>{{$now}}</code> or <code>{{$today}}</code>. <a target="_blank" href="https://docs.n8n.io/code/cookbook/luxon/">More info</a>',
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { includeInputFields } from './common.descriptions';
|
||||||
export const ExtractDateDescription: INodeProperties[] = [
|
export const ExtractDateDescription: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
'You can also do this using an expression, e.g. <code>{{ your_date.extract("month") }}}</code>. <a target="_blank" href="https://docs.n8n.io/code/expressions/luxon/">More info</a>',
|
'You can also do this using an expression, e.g. <code>{{ your_date.extract("month") }}}</code>. <a target="_blank" href="https://docs.n8n.io/code/cookbook/luxon/">More info</a>',
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { includeInputFields } from './common.descriptions';
|
||||||
export const FormatDateDescription: INodeProperties[] = [
|
export const FormatDateDescription: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
"You can also do this using an expression, e.g. <code>{{your_date.format('yyyy-MM-dd')}}</code>. <a target='_blank' href='https://docs.n8n.io/code/expressions/luxon/'>More info</a>",
|
"You can also do this using an expression, e.g. <code>{{your_date.format('yyyy-MM-dd')}}</code>. <a target='_blank' href='https://docs.n8n.io/code/cookbook/luxon/'>More info</a>",
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { includeInputFields } from './common.descriptions';
|
||||||
export const RoundDateDescription: INodeProperties[] = [
|
export const RoundDateDescription: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
"You can also do this using an expression, e.g. <code>{{ your_date.beginningOf('month') }}</code> or <code>{{ your_date.endOfMonth() }}</code>. <a target='_blank' href='https://docs.n8n.io/code/expressions/luxon/'>More info</a>",
|
"You can also do this using an expression, e.g. <code>{{ your_date.beginningOf('month') }}</code> or <code>{{ your_date.endOfMonth() }}</code>. <a target='_blank' href='https://docs.n8n.io/code/cookbook/luxon/'>More info</a>",
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { includeInputFields } from './common.descriptions';
|
||||||
export const SubtractFromDateDescription: INodeProperties[] = [
|
export const SubtractFromDateDescription: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
"You can also do this using an expression, e.g. <code>{{your_date.minus(5, 'minutes')}}</code>. <a target='_blank' href='https://docs.n8n.io/code/expressions/luxon/'>More info</a>",
|
"You can also do this using an expression, e.g. <code>{{your_date.minus(5, 'minutes')}}</code>. <a target='_blank' href='https://docs.n8n.io/code/cookbook/luxon/'>More info</a>",
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
|
Loading…
Reference in a new issue