Created
October 21, 2016 07:47
-
-
Save sergeevyi/c0298a7ca0c4598a45db36592c04b25f to your computer and use it in GitHub Desktop.
Auto-logout if any unauthorised web api request is made
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.config(['$provide', '$httpProvider', function ($provide, $httpProvider) { | |
$provide.factory('unauthorisedInterceptor', ['$q', function ($q) { | |
return { | |
'responseError': function (rejection) { | |
if (rejection.status === 401) { | |
window.location.href = '/#/login'; | |
} | |
return $q.reject(rejection); | |
} | |
}; | |
}]); | |
$httpProvider.interceptors.push('unauthorisedInterceptor'); | |
}]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment