From e621a671e37ad26342eeebc3869bd5f7b97e6c66 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 25 Apr 2019 20:02:51 +0530 Subject: Resource dictionary: backend URL changes Changed the resource dictionay search by tags backend url Issue-ID: CCSDK-1217 Change-Id: I6c6b8a7536481c2b30c933cf28269db7d2ecd735 Signed-off-by: Arundathi Patil --- cds-ui/server/src/controllers/data-dictionary.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cds-ui/server/src/controllers/data-dictionary.controller.ts b/cds-ui/server/src/controllers/data-dictionary.controller.ts index 36efe6e8a..d535e27b2 100644 --- a/cds-ui/server/src/controllers/data-dictionary.controller.ts +++ b/cds-ui/server/src/controllers/data-dictionary.controller.ts @@ -35,7 +35,7 @@ export class DataDictionaryController { async getByName(@param.path.string('name') name: string) { return await this.rdservice.getByName(name, REST_RESOURCE_DICTIONARY_BASIC_AUTH_HEADER); } - @get('/resourcedictionary/{tags}', { + @get('/resourcedictionary/search/{tags}', { responses: { '200': { content: { 'application/json': {} }, -- cgit 1.2.3-korg