1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 19:28:40 -04:00
shimapan/app/public/panel/controllers/NavCtrl.js

16 lines
494 B
JavaScript
Executable File

var angular = require('angular');
angular.module('NavCtrl', ['AuthSvc']).controller('NavController', ['$scope', '$window', 'AuthService', function($scope, $window, AuthService) {
$scope.user = {};
AuthService.currentUser(function(user) {
$scope.user = user;
});
$scope.logout = AuthService.logout;
$scope.hasPermission = function(permission) {
if (!$scope.user.scope) return false;
return $scope.user.scope.indexOf(permission) !== -1;
};
}]);