diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-06-29 17:19:15 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-07-01 09:20:46 +0200 |
commit | 7325a8629ebd718fe3546fc4105ffeeacd83232a (patch) | |
tree | 79084e6676389025885bb114bbd33f74bd59eb60 /src/dbi.h | |
parent | a496da17ea042244ec97e50a96ed64e5bda6e000 (diff) |
#915 Add POST /task/add method
Adds the possibility to create a task with procedures and other tasks
integrated as steps.
Note: "steps" parameter is optional and "steps" array object order
defines execution order.
Request:
POST /task/add
{
"center": "1",
"name": "task",
"description": "My task",
"steps": [
{
"procedure": 4
},
{
"task": 1
},
{
"procedure": 24
}
]
}
Response:
200 OK
This commit also add task case to procedure's step processing.
Otherwise, gcc prints the following warning:
src/rest.c: In function ‘og_procedure_add_steps’:
src/rest.c:4089:17: warning: enumeration value ‘OG_STEP_TASK’ not handled in switch [-Wswitch]
4089 | switch (step->type) {
| ^~~~~~
Diffstat (limited to 'src/dbi.h')
0 files changed, 0 insertions, 0 deletions