commit | aad03d4d502162bd437c6d05bd407b580edea68c | [log] [tgz] |
---|---|---|
author | Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> | Tue Jan 19 14:44:18 2021 +0200 |
committer | Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> | Tue Jan 19 14:44:18 2021 +0200 |
tree | f18140a8e5b01767b3496759f77d178090c2fdad | |
parent | 6281b63c9b417e3bf8826d9c2a61e8f3781f3d71 [diff] |
change 'update-by' key in Resource-Dictionary JSON Issue-ID: CCSDK-3083 Signed-off-by: Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> 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 89a83a1..63e1831 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 @@ * 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 = {}; }