mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
18 lines
469 B
JavaScript
18 lines
469 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('AuthService', ['Session', function (Session) {
|
|
return {
|
|
isAuthenticated () {
|
|
return (Session.currentUser != null) && (Session.currentUser.id != null);
|
|
},
|
|
|
|
isAuthorized (authorizedRoles) {
|
|
if (!angular.isArray(authorizedRoles)) {
|
|
authorizedRoles = [authorizedRoles];
|
|
}
|
|
|
|
return this.isAuthenticated() && (authorizedRoles.indexOf(Session.currentUser.role) !== -1);
|
|
}
|
|
};
|
|
}]);
|