21 lines
954 B
JavaScript
21 lines
954 B
JavaScript
|
/**
|
||
|
* Service which defines the various role groups.
|
||
|
*/
|
||
|
angular.module('quay').factory('RolesService', [function() {
|
||
|
var roleService = {};
|
||
|
|
||
|
roleService.repoRoles = [
|
||
|
{ 'id': 'read', 'title': 'Read', 'kind': 'success', 'description': 'Can view and pull from the repository' },
|
||
|
{ 'id': 'write', 'title': 'Write', 'kind': 'success', 'description': 'Can view, pull and push to the repository' },
|
||
|
{ 'id': 'admin', 'title': 'Admin', 'kind': 'primary', 'description': 'Full admin access, pull and push on the repository' }
|
||
|
];
|
||
|
|
||
|
roleService.teamRoles = [
|
||
|
{ 'id': 'member', 'title': 'Member', 'kind': 'default', 'description': 'Inherits all permissions of the team' },
|
||
|
{ 'id': 'creator', 'title': 'Creator', 'kind': 'success', 'description': 'Member and can create new repositories' },
|
||
|
{ 'id': 'admin', 'title': 'Admin', 'kind': 'primary', 'description': 'Full admin access to the organization' }
|
||
|
];
|
||
|
|
||
|
return roleService;
|
||
|
}]);
|