mirror of https://github.com/portainer/portainer
25 lines
795 B
JavaScript
25 lines
795 B
JavaScript
angular.module('endpointAccess', [])
|
|
.controller('EndpointAccessController', ['$scope', '$transition$', 'EndpointService', 'Notifications',
|
|
function ($scope, $transition$, EndpointService, Notifications) {
|
|
|
|
$scope.updateAccess = function(authorizedUsers, authorizedTeams) {
|
|
return EndpointService.updateAccess($transition$.params().id, authorizedUsers, authorizedTeams);
|
|
};
|
|
|
|
function initView() {
|
|
$('#loadingViewSpinner').show();
|
|
EndpointService.endpoint($transition$.params().id)
|
|
.then(function success(data) {
|
|
$scope.endpoint = data;
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to retrieve endpoint details');
|
|
})
|
|
.finally(function final(){
|
|
$('#loadingViewSpinner').hide();
|
|
});
|
|
}
|
|
|
|
initView();
|
|
}]);
|