@wmfs/tymly-cardscript-plugin
Version:
Plugin which handles interactions to do with Cardscript
21 lines • 393 B
JSON
{
"Comment": "State machine to apply create a to do entry for a user.",
"version": "1.0",
"StartAt": "CreateTodoEntry",
"States": {
"CreateTodoEntry": {
"Type": "Task",
"Resource": "module:createTodoEntry",
"InputPath": "$",
"End": true
}
},
"restrictions": [
{
"roleId": "$authenticated",
"allows": [
"*"
]
}
]
}