From 7bb53c64da2dcf88894bfd31503accdd81498f3d Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Wed, 3 Jun 2020 10:06:52 +0200 Subject: Update to new version 5.4 Signed-off-by: Thomas Duval Change-Id: Idcd868133d75928a1ffd74d749ce98503e0555ea --- .../action/mapping/policy.controller.unmap.js | 74 ---------------------- 1 file changed, 74 deletions(-) delete mode 100755 moon_gui/static/app/policy/action/mapping/policy.controller.unmap.js (limited to 'moon_gui/static/app/policy/action/mapping/policy.controller.unmap.js') diff --git a/moon_gui/static/app/policy/action/mapping/policy.controller.unmap.js b/moon_gui/static/app/policy/action/mapping/policy.controller.unmap.js deleted file mode 100755 index d309ec0f..00000000 --- a/moon_gui/static/app/policy/action/mapping/policy.controller.unmap.js +++ /dev/null @@ -1,74 +0,0 @@ -/** - * @author arnaud marhin - */ - -(function() { - - 'use strict'; - - angular - .module('moon') - .controller('PolicyUnMapController', PolicyUnMapController); - - PolicyUnMapController.$inject = ['$scope', '$translate', 'alertService', 'pdpService', 'utilService']; - - function PolicyUnMapController($scope, $translate, alertService, pdpService, utilService) { - - var unmap = this; - - /* - * - */ - - unmap.pdp = $scope.pdp; - unmap.policy = $scope.policy; - - unmap.unMappingLoading = false; - - unmap.unmap = unMapPolicyToPdp; - - /* - * - */ - - function unMapPolicyToPdp() { - - unmap.unMappingLoading = true; - - var pdpToUpdate = angular.copy(unmap.pdp); - - pdpToUpdate.security_pipeline = _.without(pdpToUpdate.security_pipeline, unmap.policy.id); - - pdpService.update(pdpToUpdate, unMapSuccess, unMapError); - - function unMapSuccess(data) { - - $translate('moon.policy.unmap.success', { pdpName: unmap.pdp.name, policyName: unmap.policy.name }) - .then(function (translatedValue) { - alertService.alertSuccess(translatedValue); - }); - - unmap.unMappingLoading = false; - - $scope.$emit('event:policyUnMappedToPdpSuccess', utilService.transformOne(data, 'pdps')); - - } - - function unMapError(reason) { - - $translate('moon.policy.unmap.error', { pdpName: unmap.pdp.name, policyName: unmap.policy.name }) - .then(function (translatedValue) { - alertService.alertError(translatedValue); - }); - - unmap.unMappingLoading = false; - - $scope.$emit('event:policyUnMappedToPdpError'); - - } - - } - - } - -})(); -- cgit 1.2.3-korg