Skip to content
Snippets Groups Projects
Commit ebca5c37 authored by Timothee P's avatar Timothee P :sunflower:
Browse files

reload user permissions after sso login

parent 5623587d
No related branches found
No related tags found
1 merge request!591REDMINE_ISSUE-17472 | Connexion annuaire MRN WP et GéoContrib
......@@ -203,17 +203,27 @@ export default new Vuex.Store({
}
},
async CONNECT_SSO_WITH_TOKEN({ commit }, token) {
async CONNECT_SSO_WITH_TOKEN({ commit, dispatch }, token) {
axios
.get(`${this.state.configuration.VUE_APP_DJANGO_API_BASE}login-token/?token=${token}`)
.then((response) => {
if (response && (response.status === 200 || response.status === 201)) {
const user = response.data;
commit('SET_USER', user);
dispatch('GET_USER_LEVEL_PROJECTS');
dispatch('GET_USER_LEVEL_PERMISSIONS');
commit('DISPLAY_MESSAGE', {
comment: `Vous êtes maintenant connecté ${ user.first_name} ${ user.last_name}`, level: 'positive'
});
}
})
.catch((err) => {
console.error(err);
console.log(err.toString());
console.log(err.message);
commit('DISPLAY_MESSAGE', {
comment: 'La connexion a échoué.', level: 'negative'
});
});
},
......
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