feat(auth): allow custom GitLab endpoints for self-managed instances (#6399)
* Allow custom GitLab endpoints for self-hosting --------- Co-authored-by: Nicolas Giard <github@ngpixel.com>
This commit is contained in:
@@ -15,6 +15,8 @@ module.exports = {
|
||||
clientSecret: conf.clientSecret,
|
||||
callbackURL: conf.callbackURL,
|
||||
baseURL: conf.baseUrl,
|
||||
authorizationURL: conf.authorizationURL || (conf.baseUrl + '/oauth/authorize'),
|
||||
tokenURL: conf.tokenURL || (conf.baseUrl + '/oauth/token'),
|
||||
scope: ['read_user'],
|
||||
passReqToCallback: true
|
||||
}, async (req, accessToken, refreshToken, profile, cb) => {
|
||||
|
||||
Reference in New Issue
Block a user