Skip to content
Snippets Groups Projects
Commit ac78f801 authored by iamtakingiteasy's avatar iamtakingiteasy
Browse files

Fix OAuth2 token lingering after revocation

parent a1641193
No related branches found
No related tags found
No related merge requests found
Fix OAuth2 token lingering after revocation
......@@ -651,6 +651,12 @@ const users = {
const response = data.error
// Authentication failed
commit('endLogin')
// remove authentication token on client/authentication errors
if ([400, 401, 403, 422].includes(response.status)) {
commit('clearToken')
}
if (response.status === 401) {
reject(new Error('Wrong username or password'))
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment