2
0

Add scope to Gitlab oauth request (#4330)

Fix #3449
This commit is contained in:
techknowlogick
2018-06-30 13:13:17 -04:00
committed by Lauris BH
parent af7f6a1364
commit 23c2d2a14f

View File

@@ -163,7 +163,7 @@ func createProvider(providerName, providerType, clientID, clientSecret, openIDCo
profileURL = customURLMapping.ProfileURL
}
}
provider = gitlab.NewCustomisedURL(clientID, clientSecret, callbackURL, authURL, tokenURL, profileURL)
provider = gitlab.NewCustomisedURL(clientID, clientSecret, callbackURL, authURL, tokenURL, profileURL, "read_user")
case "gplus":
provider = gplus.New(clientID, clientSecret, callbackURL, "email")
case "openidConnect":