UNPKG

generator-sean

Version:
20 lines (14 loc) 535 B
'use strict'; angular.module('<%= slugifiedModuleName %>').controller('<%= classifiedControllerName %>Controller', ['$scope','Message', function($scope,Message) { //Watch user login $scope.user = User.get(); $scope.isAuthenticated = Authentication.isAuthenticated(); $rootScope.$on('Auth',function(){ $scope.user = User.get(); $scope.isAuthenticated = Authentication.isAuthenticated(); }); // <%= humanizedControllerName %> controller logic // ... } ]);