@wmfs/tymly-pg-plugin
Version:
Replace Tymly's out-the-box memory storage with PostgreSQL
27 lines (26 loc) • 499 B
JSON
{
"Comment": "Find title by id.",
"version": "1.0",
"StartAt": "FindingById",
"instigators": ["user"],
"States": {
"FindingById": {
"Type": "Task",
"InputPath": "$.idToFind",
"Resource": "module:findingById",
"ResourceConfig": {
"modelId": "title"
},
"ResultPath": "$.foundTitle",
"End": true
}
},
"restrictions": [
{
"roleId": "$everyone",
"allows": [
"*"
]
}
]
}