mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
Add Pushover TTL
This commit is contained in:
parent
712bf25fab
commit
4babb919a7
|
@ -249,6 +249,17 @@ export class Pushover implements INodeType {
|
||||||
default: '',
|
default: '',
|
||||||
description: "Your message's title, otherwise your app's name is used",
|
description: "Your message's title, otherwise your app's name is used",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Time to Live (Seconds)',
|
||||||
|
name: 'ttl',
|
||||||
|
type: 'number',
|
||||||
|
typeOptions: {
|
||||||
|
minValue: 0,
|
||||||
|
},
|
||||||
|
default: 0,
|
||||||
|
description:
|
||||||
|
'A number of seconds that the message will live, before being deleted automatically',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'URL',
|
displayName: 'URL',
|
||||||
name: 'url',
|
name: 'url',
|
||||||
|
|
Loading…
Reference in a new issue