mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
Add Pushover TTL
This commit is contained in:
parent
712bf25fab
commit
4babb919a7
|
@ -249,6 +249,17 @@ export class Pushover implements INodeType {
|
|||
default: '',
|
||||
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',
|
||||
name: 'url',
|
||||
|
|
Loading…
Reference in a new issue