summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-04-25 20:02:51 +0530
committerArundathi Patil <arundpil@in.ibm.com>2019-04-25 20:03:10 +0530
commite621a671e37ad26342eeebc3869bd5f7b97e6c66 (patch)
tree2418d82ed0d2b4ba2b81caf1a76bc24d3c5b5f5d
parent79895ed99627931ab6c934dab074e36c3e9e06a4 (diff)
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 <arundpil@in.ibm.com>
-rw-r--r--cds-ui/server/src/controllers/data-dictionary.controller.ts2
1 files changed, 1 insertions, 1 deletions
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': {} },