aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/server/src/services/blueprint.service.ts
diff options
context:
space:
mode:
authorBrinda Santh Muthuramalingam <brindasanth@in.ibm.com>2019-11-07 14:12:47 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-07 14:12:47 +0000
commit1e1ac926da3bc75e55a435a4b71b53642c0ccca8 (patch)
tree4d292fa9864263eee83b45033730597066ca9714 /cds-ui/server/src/services/blueprint.service.ts
parent88e3ef2d396bc91051b182d11a2d490bf37abf08 (diff)
parent7cfca9c44b6465d7eb88d64e3fa38c7f1a09c096 (diff)
Merge "add search by meta data in cds-ui server and blueprint processor Issue-ID: CCSDK-1770"
Diffstat (limited to 'cds-ui/server/src/services/blueprint.service.ts')
-rw-r--r--cds-ui/server/src/services/blueprint.service.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/cds-ui/server/src/services/blueprint.service.ts b/cds-ui/server/src/services/blueprint.service.ts
index 0545faca8..7952859d1 100644
--- a/cds-ui/server/src/services/blueprint.service.ts
+++ b/cds-ui/server/src/services/blueprint.service.ts
@@ -4,6 +4,7 @@ import {BlueprintDataSource} from '../datasources';
export interface BlueprintService {
getAllblueprints(): Promise<any>;
+ getBlueprintsByKeyword(keyword: string): Promise<any>;
getByTags(tags: string): Promise<JSON>;
}
@@ -17,4 +18,4 @@ export class BlueprintServiceProvider implements Provider<BlueprintService> {
value(): Promise<BlueprintService> {
return getService(this.dataSource);
}
-} \ No newline at end of file
+}