Когда срабатывает событие statechangestart, оно не срабатывает.я использую угловой v 1.7.3
app.run(function ($rootScope, $state, Auth, Access) {
$rootScope.$on('$stateChangeStart',function(event, toState, toParams, fromState, fromParams, options){
var requireLogin = true;
if (requireLogin && typeof $rootScope.currentUser === 'undefined') {
event.preventDefault();
console.log(Access.isAuthenticated());
}
});
});