aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/server/src/services
diff options
context:
space:
mode:
authorShaaban Ebrahim <shaaban.eltanany.ext@orange.com>2019-11-06 13:23:28 +0200
committerShaaban Ebrahim <shaaban.eltanany.ext@orange.com>2019-11-06 21:35:57 +0200
commit7cfca9c44b6465d7eb88d64e3fa38c7f1a09c096 (patch)
treee2a6d83273fa5ba2085b9e8c033198734e797979 /cds-ui/server/src/services
parenta835890f817a1e3627c281e98ab786ee7bf8c2ba (diff)
add search by meta data in cds-ui server and blueprint processor
Issue-ID: CCSDK-1770 Signed-off-by: Shaaban Ebrahim <shaaban.eltanany.ext@orange.com> Change-Id: I8ac77ab4903e3141d065a61bf28404f3d16077cd
Diffstat (limited to 'cds-ui/server/src/services')
-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
+}