From adcd4f2bc695840e9ecbc05003bc52c675f22fec Mon Sep 17 00:00:00 2001 From: KAPIL SINGAL Date: Fri, 22 Jan 2021 11:49:51 -0500 Subject: Renaming Files having BluePrint to have Blueprint Replacing BluePrint with Blueprint throughout Issue-ID: CCSDK-3098 Signed-off-by: KAPIL SINGAL Change-Id: Ibee8bad07ae7d9287073db2d4f2f2cd730fa8b96 --- cds-ui/server/src/controllers/blueprint-rest.controller.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (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 a8b989ff4..3bbb7f631 100644 --- a/cds-ui/server/src/controllers/blueprint-rest.controller.ts +++ b/cds-ui/server/src/controllers/blueprint-rest.controller.ts @@ -58,8 +58,8 @@ export class BlueprintRestController { }, }, }) - async getOneBluePrint(@param.path.string('id') id: string) { - return await this.bpservice.getOneBluePrint(id); + async getOneBlueprint(@param.path.string('id') id: string) { + return await this.bpservice.getOneBlueprint(id); } @del('/controllerblueprint/{id}', { @@ -70,8 +70,8 @@ export class BlueprintRestController { }, }, }) - async deleteBluePrint(@param.path.string('id') id: string) { - return await this.bpservice.deleteBluePrint(id); + async deleteBlueprint(@param.path.string('id') id: string) { + return await this.bpservice.deleteBlueprint(id); } -- cgit 1.2.3-korg