diff options
author | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-07-29 20:07:04 +0530 |
---|---|---|
committer | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-07-29 20:07:15 +0530 |
commit | 5ede965c0c3dd365be4efde0699d5ec976a614c3 (patch) | |
tree | b8a48141bce079926c85c9195839db69d4446f75 /cds-ui/client/src/app/feature-modules/blueprint/select-template | |
parent | 14588a767139e4a66303252739ce80ee9e81ea99 (diff) |
Blueprint client backend integration fix
Blueprint backend data integration fix
Change-Id: If0e0b2c30bf07f06fc728ff26c509f265c5ee303
Issue-ID: CCSDK-1275
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/select-template')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.service.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.service.ts b/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.service.ts index dd17a30d2..9ce714dc9 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.service.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/search-template/search-template.service.ts @@ -23,6 +23,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { ApiService } from '../../../../common/core/services/api.service'; +import { BlueprintURLs } from '../../../../common/constants/app-constants'; @Injectable({ providedIn: 'root' @@ -31,7 +32,7 @@ export class SearchTemplateService { constructor(private _http: HttpClient, private api: ApiService) { } - searchByTags(uri: string, searchText: String): Observable<any>{ - return this.api.post(uri, searchText); + searchByTags(searchText: String): Observable<any>{ + return this.api.post(BlueprintURLs.searchByTag, searchText); } } |