group des users wird ständig aktualisiert, sodass beim welchsel des barrechts nicht neu eingeloggt werden muss
This commit is contained in:
parent
3d9ab23a20
commit
f99bacbc33
|
@ -135,7 +135,10 @@ const actions = {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifeTime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
commit('setUsersLoading', false)
|
commit('setUsersLoading', false)
|
||||||
},
|
},
|
||||||
|
@ -165,7 +168,10 @@ const actions = {
|
||||||
error: true
|
error: true
|
||||||
})
|
})
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
commit('updateUser', { username: data.username, loading: false })
|
commit('updateUser', { username: data.username, loading: false })
|
||||||
|
@ -189,7 +195,10 @@ const actions = {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifeTime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
commit('updateUser', { username: data.username, loading: false })
|
commit('updateUser', { username: data.username, loading: false })
|
||||||
|
@ -207,7 +216,10 @@ const actions = {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifeTime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.data === 401) dispatch('logout', null, { root: true })
|
if (e.response.data === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
commit('setAllUsersLoading', false)
|
commit('setAllUsersLoading', false)
|
||||||
},
|
},
|
||||||
|
@ -227,7 +239,10 @@ const actions = {
|
||||||
dispatch('getLifeTime', null, { root: true })
|
dispatch('getLifeTime', null, { root: true })
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
commit('updateMessage', { date: data.date, loading: false })
|
commit('updateMessage', { date: data.date, loading: false })
|
||||||
},
|
},
|
||||||
|
@ -240,7 +255,10 @@ const actions = {
|
||||||
commit('setLocked', response.data.value)
|
commit('setLocked', response.data.value)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async setLocked({ commit, rootState, dispatch }) {
|
async setLocked({ commit, rootState, dispatch }) {
|
||||||
|
@ -253,7 +271,10 @@ const actions = {
|
||||||
commit('setLocked', response.data.value)
|
commit('setLocked', response.data.value)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async unlock({ commit, rootState, dispatch }, password) {
|
async unlock({ commit, rootState, dispatch }, password) {
|
||||||
|
@ -273,7 +294,10 @@ const actions = {
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) {
|
||||||
|
dispatch('getLifeTime', null, { root: true })
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setFilter({ commit }, data) {
|
setFilter({ commit }, data) {
|
||||||
|
|
|
@ -156,6 +156,12 @@ const actions = {
|
||||||
headers: { Token: rootState.login.user.accessToken }
|
headers: { Token: rootState.login.user.accessToken }
|
||||||
})
|
})
|
||||||
commit('setLifeTime', response.data.value)
|
commit('setLifeTime', response.data.value)
|
||||||
|
var user = JSON.parse(localStorage.getItem('user'))
|
||||||
|
console.log('user',user)
|
||||||
|
user.group = response.data.group
|
||||||
|
console.log('after',user)
|
||||||
|
localStorage.setItem('user', JSON.stringify(user))
|
||||||
|
commit('updateAccessToken', user)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.response)
|
if (e.response)
|
||||||
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
if (e.response.status === 401) dispatch('logout', null, { root: true })
|
||||||
|
|
Loading…
Reference in New Issue