aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts b/sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts
index ecea3541..a7e4eeea 100644
--- a/sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts
+++ b/sdc-workflow-designer-ui/src/app/model/workflow/rest-parameter.ts
@@ -14,7 +14,7 @@ import { WorkflowNode } from './workflow-node';
export class RestParameter extends Parameter {
constructor(name: string, value: string, valueSource: string, type: string,
- public position: string, public schema: any) {
- super(name, value, valueSource, type);
+ public position: string, public schema: any, public required: boolean) {
+ super(name, value, valueSource, type, required);
}
}