UI Support for operation milestones
[sdc.git] / catalog-ui / src / app / models / operation.ts
index 3d4917f..3b2f203 100644 (file)
@@ -101,6 +101,8 @@ export class OperationModel extends BEOperationModel{
     workflowName: string;
     workflowVersion: string;
 
+    milestones: Object;
+
     protected OperationTypeEnum: Array<String> = [
         'Create',
         'Delete',
@@ -125,6 +127,7 @@ export class OperationModel extends BEOperationModel{
             this.artifactData = operation.artifactData;
             this.workflowName = operation.workflowName;
             this.workflowVersion = operation.workflowVersion;
+            this.milestones = operation.milestones;
         }
     }