summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models
diff options
context:
space:
mode:
authorShaabanEltanany <shaaban.eltanany.ext@orange.com>2020-11-09 13:04:44 +0200
committerShaabanEltanany <shaaban.eltanany.ext@orange.com>2020-11-09 15:36:00 +0200
commitb4932b02edc5d6bef5cec16d88f35dda392e3f91 (patch)
tree7f422d2fc4a8d4897a24b055ef8bc976239afb83 /cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models
parent3b653f855c95d9ebfb88e537f0f2fcc5c96ac164 (diff)
adding value attribute for customized output for action
Issue-ID: CCSDK-2975 Signed-off-by: ShaabanEltanany <shaaban.eltanany.ext@orange.com> Change-Id: I9a7d15943d9b3c59f0444d4b98597f6af57e3044
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
index b4cce3484..82bdb6076 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
@@ -4,14 +4,16 @@ export class InputActionAttribute {
type: string;
required: boolean;
+
constructor() {
this.name = '';
this.description = '';
this.type = '';
this.required = true;
+
}
}
export class OutputActionAttribute extends InputActionAttribute {
-
+ value = '';
}