Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Géocontrib Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GéoContrib
Géocontrib Frontend
Merge requests
!591
REDMINE_ISSUE-17472
| Connexion annuaire MRN WP et GéoContrib
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
REDMINE_ISSUE-17472
| Connexion annuaire MRN WP et GéoContrib
redmine-issues/17473
into
develop
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
Timothee P
requested to merge
redmine-issues/17473
into
develop
1 year ago
Overview
0
Commits
4
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 2
ebca5c37
1 year ago
version 1
5623587d
1 year ago
develop (base)
and
version 2
latest version
2298b249
4 commits,
1 year ago
version 2
ebca5c37
3 commits,
1 year ago
version 1
5623587d
2 commits,
1 year ago
Show latest version
1 file
+
11
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/store/index.js
+
11
−
1
Options
@@ -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