From 43bbe44b1babdcfc91ad47df2b3c6a93e525b6a6 Mon Sep 17 00:00:00 2001 From: Ahmed Abbas Date: Wed, 13 Nov 2019 11:09:25 +0200 Subject: add API to list blueprints with pagination in loopback server Issue-ID: CCSDK-1770 Signed-off-by: Ahmed Abbas Change-Id: I705135af4898db68eeddb8b67bf62fbbea6921ac --- .../server/src/controllers/blueprint-rest.controller.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'cds-ui/server/src/controllers/blueprint-rest.controller.ts') 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': { -- cgit 1.2.3-korg