Skip to content
Snippets Groups Projects

REDMINE_ISSUE-17472 | Connexion annuaire MRN WP et GéoContrib

Merged Timothee P requested to merge redmine-issues/17473 into develop
+ 11
1
@@ -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'
});
});
},
Loading