From bb91b6eedec5d15ec4d9e473f27dd63592762cf9 Mon Sep 17 00:00:00 2001 From: Ahmedeldeeb50 Date: Tue, 12 Jan 2021 13:07:45 +0200 Subject: Add icon beside the selected templates in Function attributes tab update create_resource_dictionary API Issue-ID: CCSDK-3082 Issue-ID: CCSDK-3078 Signed-off-by: Ahmedeldeeb50 Change-Id: Ic5038dfba0c7b59c5e51096b9864aa0baff56c2b --- cds-ui/server/src/services/resource-dictionary.service.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cds-ui/server/src/services/resource-dictionary.service.ts') diff --git a/cds-ui/server/src/services/resource-dictionary.service.ts b/cds-ui/server/src/services/resource-dictionary.service.ts index a36c7fe75..6bf3f06ae 100644 --- a/cds-ui/server/src/services/resource-dictionary.service.ts +++ b/cds-ui/server/src/services/resource-dictionary.service.ts @@ -1,12 +1,13 @@ -import {getService} from '@loopback/service-proxy'; -import {inject, Provider} from '@loopback/core'; -import {ResourceDictionaryDataSource} from '../datasources'; +import { getService } from '@loopback/service-proxy'; +import { inject, Provider } from '@loopback/core'; +import { ResourceDictionaryDataSource } from '../datasources'; export interface ResourceDictionaryService { getByName(name: string): Promise; getSourceMapping(): Promise; getByTags(tags: string): Promise; save(resourceDictionary: JSON): Promise; + saveDefinition(resourceDictionary: JSON): Promise; searchbyNames(resourceDictionaryList: JSON): Promise; getModelType(source: string): Promise; getDataTypes(): Promise; @@ -18,7 +19,7 @@ export class ResourceDictionaryServiceProvider implements Provider { return getService(this.dataSource); -- cgit 1.2.3-korg