Skip to content
Snippets Groups Projects
Commit 31351287 authored by Alexis POYEN's avatar Alexis POYEN
Browse files

Merge branch '11-handle-technical-users' into 'master'

Feat : Handle users for election

Closes #11

See merge request apoyen/elections!3
parents 67fde387 c7d4275f
No related branches found
No related tags found
1 merge request!3Feat : Handle users for election
Pipeline #5282 passed
HOSTNAME=elections.127.0.0.1.nip.io
ADMIN_GROUP=ADMINS
CLIENT_GROUP=VISUALIZER
VISUALIZER_GROUP=VISUALIZER
# Needed to user OAuth2 authentication :
REDIRECT_URL=https://${HOSTNAME}/OAuth2Callback
......
......@@ -163,8 +163,8 @@ func (d *DataHandler) addUserInMemory(userOauth2 UserOAuth2) (User, error) {
for _, userRole := range userOauth2.Groups {
if userRole != "" && (userRole == os.Getenv("ADMIN_GROUP")) {
user.Role = "ADMIN"
} else if userRole != "" && (userRole == os.Getenv("CLIENT_GROUP")) {
user.Role = "CLIENT"
} else if userRole != "" && (userRole == os.Getenv("VISUALIZER_GROUP")) {
user.Role = "VISUALIZER"
} else {
return user, errors.New("user not in an app group")
}
......
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