diff options
author | Brinda Santh Muthuramalingam <brindasanth@in.ibm.com> | 2019-07-23 20:00:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-23 20:00:50 +0000 |
commit | a28341c5c7ef20fc942fcdf7baaddcf2bb30bcc3 (patch) | |
tree | c0fcc41e898d199d46b4f5b7417643fcc5c535dc /cds-ui/client/src/app | |
parent | d9e06dc28322405298fd823ddd6f737b05d79502 (diff) | |
parent | 184d052ef0224c45184a1eaacdf84b11cb7661dc (diff) |
Merge "Loopback URL update"
Diffstat (limited to 'cds-ui/client/src/app')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-edit.service.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-edit.service.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-edit.service.ts index 417f6edb3..ed1ef6f37 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-edit.service.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-edit.service.ts @@ -38,12 +38,10 @@ export class ResourceEditService { } getSources() { - // to do - return this.api.get('ResourceDictionaryURLs.getSources'); + return this.api.get(ResourceDictionaryURLs.getSources); } getModelType(name) { - // to do - return this.api.get("ResourceDictionaryURLs.getModelType + '/' + name"); + return this.api.get(ResourceDictionaryURLs.getModelType + '/' + name); } }
\ No newline at end of file |