diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-25 15:19:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-25 15:19:31 +0000 |
commit | af1db7274571e7b7fd349efd42423e7106f2d07d (patch) | |
tree | bce43b1bf47d12cf34c8a66b10f6fae275ed6ecb /cds-ui/server/src/controllers/data-dictionary.controller.ts | |
parent | dea21123218a3ac602f9a859ffddae8e72e4194d (diff) | |
parent | e621a671e37ad26342eeebc3869bd5f7b97e6c66 (diff) |
Merge "Resource dictionary: backend URL changes"
Diffstat (limited to 'cds-ui/server/src/controllers/data-dictionary.controller.ts')
-rw-r--r-- | cds-ui/server/src/controllers/data-dictionary.controller.ts | 2 |
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': {} }, |