Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
Created October 21, 2016 07:47
Show Gist options
  • Save sergeevyi/c0298a7ca0c4598a45db36592c04b25f to your computer and use it in GitHub Desktop.
Save sergeevyi/c0298a7ca0c4598a45db36592c04b25f to your computer and use it in GitHub Desktop.
Auto-logout if any unauthorised web api request is made
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