2023-04-04 08:08:49 -07:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
|
|
|
|
export const CurrentDateDescription: INodeProperties[] = [
|
|
|
|
{
|
|
|
|
displayName:
|
|
|
|
'You can also refer to the current date in n8n expressions by using {{ $now }} or {{ $today }}. More info',
|
|
|
|
name: 'notice',
|
|
|
|
type: 'notice',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['getCurrentDate'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Include Current Time',
|
|
|
|
name: 'includeTime',
|
|
|
|
type: 'boolean',
|
|
|
|
default: true,
|
|
|
|
description: 'Whether deactivated, the time will be set to midnight',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['getCurrentDate'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Output Field Name',
|
|
|
|
name: 'outputFieldName',
|
|
|
|
type: 'string',
|
2023-04-05 06:34:55 -07:00
|
|
|
default: 'currentDate',
|
2023-04-04 08:08:49 -07:00
|
|
|
description: 'Name of the field to put the output in',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['getCurrentDate'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|