diff options
author | Arielk <Ariel.Kenan@amdocs.com> | 2018-08-14 10:19:20 +0300 |
---|---|---|
committer | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-08-14 13:54:30 +0000 |
commit | 57f4bfa334d91b445e1999a5504fda4f43d0a1e4 (patch) | |
tree | bbfe905497a6455c3610b387851fb795155d1d95 /catalog-ui/src/app/ng2 | |
parent | 1929d75c6856e212979c3a9c7950dfd717d3bb98 (diff) |
Patch for artifact delivery POST
Change-Id: If36201ba3f9a97dba46d839d8d9cfa5af533fed9
Issue-ID: SDC-1645
Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
Diffstat (limited to 'catalog-ui/src/app/ng2')
-rw-r--r-- | catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.ts | 5 | ||||
-rw-r--r-- | catalog-ui/src/app/ng2/services/workflow.service.ts | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.ts b/catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.ts index 010a1f9dda..b3e06c33cf 100644 --- a/catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.ts +++ b/catalog-ui/src/app/ng2/pages/interface-operation/interface-operation.page.component.ts @@ -157,15 +157,14 @@ export class InterfaceOperationComponent { private createOperation = (operation: OperationModel): any => { this.ComponentServiceNg2.createInterfaceOperation(this.component, operation).subscribe((response: CreateOperationResponse) => { this.openOperation = null; - + this.operationList.push(new OperationModel(response)); if (response.workflowId) { const resourceId = this.component.uuid; const operationId = response.uniqueId; const workflowId = response.workflowId; const versionId = response.workflowVersionId; const artifactId = response.artifactUUID; - - this.WorkflowServiceNg2.associateWorkflowArtifact(resourceId, operationId, workflowId, versionId, artifactId); + this.WorkflowServiceNg2.associateWorkflowArtifact(resourceId, operationId, workflowId, versionId, artifactId).subscribe(); } }); } diff --git a/catalog-ui/src/app/ng2/services/workflow.service.ts b/catalog-ui/src/app/ng2/services/workflow.service.ts index b880955d27..ae06a39713 100644 --- a/catalog-ui/src/app/ng2/services/workflow.service.ts +++ b/catalog-ui/src/app/ng2/services/workflow.service.ts @@ -34,13 +34,12 @@ export class WorkflowServiceNg2 { public updateWorkflowVersion(workflowId: string, versionId: string, payload: any): Observable<any> { return this.http.put(this.baseUrl + '/workflows/' + workflowId + '/versions/' + versionId, payload) .map((res:Response) => { - return res; + return res.json(); }); } public associateWorkflowArtifact(resourceUuid, operationId, workflowId, workflowVersionId, artifactUuid): Observable<any> { - return this.http.post(this.baseUrl + '/workflows/' + workflowId + '/versions/' + workflowVersionId + '/artifact-deliveries', - { + return this.http.post(this.baseUrl + '/workflows/' + workflowId + '/versions/' + workflowVersionId + '/artifact-deliveries', { endpoint: this.catalogBaseUrl + '/resources/' + resourceUuid + '/interfaces/' + operationId + '/artifacts/' + artifactUuid, method: 'POST' }) |