diff --git a/APPL/API2/model_mld_workflowrule.inc b/APPL/API2/model_mld_workflowrule.inc index 1dd977d5e6..8299492c7d 100644 --- a/APPL/API2/model_mld_workflowrule.inc +++ b/APPL/API2/model_mld_workflowrule.inc @@ -94,6 +94,14 @@ function model_mld_workflowrule(mystart_key) "dbs": "mld_workflowrule_condition", "label": L("mld_workflowrule_condition"), "typ": "memo" + }, + "otherpath": { + "dbs": "mld_workflowrule_result", + "label": "Otherpath", + "typ": "number", + "required": true, + "hidden_fld": true, + "defaultvalue": 1 } }; var prev_key = getQParamInt("prevstep", -1) @@ -120,7 +128,7 @@ function model_mld_workflowrule(mystart_key) "columns": ["id", "nextstep"] }; - this.REST_GET = generic_REST_GET(this); + this.REST_GET = generic_REST_GET(this); this.REST_POST = generic_REST_POST(this); this.REST_PUT = generic_REST_PUT(this); this.REST_DELETE = generic_REST_DELETE(this);