diff options
author | Brinda Santh Muthuramalingam <brindasanth@in.ibm.com> | 2019-11-14 16:01:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-14 16:01:55 +0000 |
commit | 394053fb895c1c59a90e221f57777ebf5d85b27c (patch) | |
tree | 48794a09400f870da2b97b6282c970795be8f6fe /cds-ui/server/src/controllers/blueprint-rest.controller.ts | |
parent | c5c977f499350b71a23ff7e07042c595bfbfa642 (diff) | |
parent | 43bbe44b1babdcfc91ad47df2b3c6a93e525b6a6 (diff) |
Merge "add API to list blueprints with pagination in loopback server"
Diffstat (limited to 'cds-ui/server/src/controllers/blueprint-rest.controller.ts')
-rw-r--r-- | cds-ui/server/src/controllers/blueprint-rest.controller.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cds-ui/server/src/controllers/blueprint-rest.controller.ts b/cds-ui/server/src/controllers/blueprint-rest.controller.ts index b52952826..49ecb9df1 100644 --- a/cds-ui/server/src/controllers/blueprint-rest.controller.ts +++ b/cds-ui/server/src/controllers/blueprint-rest.controller.ts @@ -69,6 +69,21 @@ export class BlueprintRestController { return await this.bpservice.getAllblueprints(); } + @get('/controllerblueprint/paged', { + responses: { + '200': { + description: 'Blueprint model instance with pagination', + content: { 'application/json': { schema: { 'x-ts-type': Blueprint } } }, + }, + }, + }) + async getPagedBlueprints( + @param.query.number('limit') limit: number, + @param.query.number('offset') offset: number, + @param.query.string('sort') sort: string) { + return await this.bpservice.getPagedBueprints(limit, offset, sort); + } + @get('/controllerblueprint/meta-data/{keyword}', { responses: { '200': { |