From: Ahmedeldeeb50 Date: Tue, 19 Jan 2021 12:44:18 +0000 (+0200) Subject: change 'update-by' key in Resource-Dictionary JSON X-Git-Tag: 1.1.0~25 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F69%2F116969%2F1;p=ccsdk%2Fcds.git change 'update-by' key in Resource-Dictionary JSON Issue-ID: CCSDK-3083 Signed-off-by: Ahmedeldeeb50 Change-Id: Ie88c9d8f61b7e692c665940c29027b4e405c91e1 --- diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts b/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts index 89a83a1ea..63e18313e 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts @@ -19,20 +19,20 @@ import { JsonObject, JsonProperty } from 'json2typescript'; * limitations under the License. * ============LICENSE_END========================================================= */ -@JsonObject() +@JsonObject export class MetaData { @JsonProperty('name') public name: string; public tags: string; @JsonProperty('updated-by') - public updatedBy: string; + public ['updated-by'] = 'ahmed.eldeeb.ext@orange.com'; public property: Property; public sources: any; constructor() { this.name = ''; this.tags = ''; - this.updatedBy = ''; + // this.updatedBy = ''; this.property = new Property(); this.sources = {}; }