From 184d052ef0224c45184a1eaacdf84b11cb7661dc Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Tue, 23 Jul 2019 19:58:08 +0530 Subject: Loopback URL update Added loopback URl's for fetching source list and model type Issue-ID: CCSDK-707 Change-Id: I9546d9b67183413a180af60cece9996b4d5e8f11 Signed-off-by: Arundathi Patil --- .../resource-definition/resource-edit/resource-edit.service.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cds-ui/client') 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 -- cgit 1.2.3-korg