diff options
Diffstat (limited to 'ecomp-portal-FE-common/client/app/views/users/users.controller.js')
-rw-r--r-- | ecomp-portal-FE-common/client/app/views/users/users.controller.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ecomp-portal-FE-common/client/app/views/users/users.controller.js b/ecomp-portal-FE-common/client/app/views/users/users.controller.js index 0a05d702..dfe1da6c 100644 --- a/ecomp-portal-FE-common/client/app/views/users/users.controller.js +++ b/ecomp-portal-FE-common/client/app/views/users/users.controller.js @@ -253,16 +253,6 @@ }); }; - this.syncRolesFromExternalAuthSystem = (appId) =>{ - applicationsService.syncRolesEcompFromExtAuthSystem(appId).then(function(res){ - if(res.status == 200){ - confirmBoxService.showInformation('Sync operation completed successfully!').then(isConfirmed => {}); - } else{ - confirmBoxService.showInformation('Sync operation failed for '+app).then(isConfirmed => {}); - } - }); - }; - $scope.$watch('users.selectedApp.value', (newVal, oldVal) => { if(typeof(newVal) != 'undefined' && !newVal.includes("Select")){ applicationsService.getSingleAppInfo(newVal).then(function(res) { |