diff options
author | Alexey Sandler <alexey.sandler@intl.att.com> | 2019-12-05 17:04:45 +0200 |
---|---|---|
committer | Alexey Sandler <alexey.sandler@intl.att.com> | 2019-12-05 17:06:06 +0200 |
commit | f53a917032b6c71c3d2b8f536244d4ba2611c068 (patch) | |
tree | 9d3ab16f1492f3eb8ad4e07252afcef6d476016d /vid-webpack-master/src/app/shared/services | |
parent | 0b62c11d045393d514d9c31dedad7d80febddd80 (diff) |
Call to useTemplate create Action in order
to update state with template which was called from back end.
Issue-ID: VID-724
Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
Change-Id: I0726d54324e523d60bcd41116ee44b01a88d9c7b
Diffstat (limited to 'vid-webpack-master/src/app/shared/services')
-rw-r--r-- | vid-webpack-master/src/app/shared/services/templateService/instantiationTemplates.service.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vid-webpack-master/src/app/shared/services/templateService/instantiationTemplates.service.ts b/vid-webpack-master/src/app/shared/services/templateService/instantiationTemplates.service.ts index 21cdc9296..018e0d367 100644 --- a/vid-webpack-master/src/app/shared/services/templateService/instantiationTemplates.service.ts +++ b/vid-webpack-master/src/app/shared/services/templateService/instantiationTemplates.service.ts @@ -6,6 +6,7 @@ import {Observable} from "rxjs"; import {ServiceInstance} from "../../models/serviceInstance"; import {Constants} from "../../utils/constants"; import {createServiceInstance} from "../../storeUtil/utils/service/service.actions"; +import {createServiceInstanceFromTemplate} from "../../storeUtil/utils/useTemplate/useTemplate.action"; @Injectable() export class InstantiationTemplatesService { @@ -19,7 +20,7 @@ export class InstantiationTemplatesService { public retrieveAndStoreInstantiationTemplateTopology(jobId: string, serviceModelId: string): Observable<ServiceInstance> { return this.retrieveInstantiationTemplateTopology(jobId).do((instantiationTemplate: ServiceInstance) => { - this.store.dispatch(createServiceInstance(instantiationTemplate, serviceModelId)); + this.store.dispatch(createServiceInstanceFromTemplate(instantiationTemplate, serviceModelId)); }); }; |