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