Browse Source

fix: gitlab baseurl missing (#907)

pull/919/head
Nick 5 years ago
parent
commit
bd24ff225b
1 changed files with 1 additions and 0 deletions
  1. 1
      server/modules/authentication/gitlab/authentication.js

1
server/modules/authentication/gitlab/authentication.js

@ -14,6 +14,7 @@ module.exports = {
clientID: conf.clientId, clientID: conf.clientId,
clientSecret: conf.clientSecret, clientSecret: conf.clientSecret,
callbackURL: conf.callbackURL, callbackURL: conf.callbackURL,
baseUrl: conf.baseUrl,
scope: ['read_user'] scope: ['read_user']
}, async (accessToken, refreshToken, profile, cb) => { }, async (accessToken, refreshToken, profile, cb) => {
try { try {

Loading…
Cancel
Save