aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js')
-rw-r--r--vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js
index 03e41b2c1..699868477 100644
--- a/vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/change-management.service.js
@@ -21,6 +21,15 @@
});
};
+ this.getSOWorkflows = function (vnfNames) {
+ return $http.get(COMPONENT.GET_SO_WORKFLOWS, {params: {vnfName: vnfNames}})
+ .success(function (response) {
+ return {data: response};
+ }).catch(function () {
+ return {data: []};
+ });
+ };
+
this.getMSOChangeManagements = function() {
var deferred = $q.defer();