res.header('Access-Control-Allow-Methods', 'POST,GET,OPTION');
angular.run(function($rootScope){
$rootScope.$on('$routeChangeStart', function(e){
checkAuth().then(function (response) {
// ... всё ок
}, function(response){
// ... всё плохо.
$location.path('/login');
});
});
});