feat: add new photo in album flickr trigger

This commit is contained in:
Ali BARIN
2022-04-15 00:47:47 +02:00
committed by Ömer Faruk Aydın
parent 651cceec14
commit 1e00c7d14e
10 changed files with 204 additions and 5 deletions

View File

@@ -218,9 +218,9 @@
"triggers": [
{
"name": "New favorite photo",
"key": "favoritePhoto",
"key": "newFavoritePhoto",
"interval": "15m",
"description": "Will be triggered when you favorite a photo.",
"description": "Triggers when you favorite a photo.",
"substeps": [
{
"key": "chooseAccount",
@@ -231,6 +231,45 @@
"name": "Test trigger"
}
]
},
{
"name": "New photo in album",
"key": "newPhotoInAlbum",
"interval": "15m",
"description": "Triggers when you add a new photo in an album.",
"substeps": [
{
"key": "chooseAccount",
"name": "Choose account"
},
{
"key": "chooseTrigger",
"name": "Set up a trigger",
"arguments": [
{
"label": "Album",
"key": "album",
"type": "dropdown",
"required": true,
"variables": false,
"source": {
"type": "query",
"name": "getData",
"arguments": [
{
"name": "key",
"value": "listAlbums"
}
]
}
}
]
},
{
"key": "testStep",
"name": "Test trigger"
}
]
}
]
}