From bd24ff225b3dd50eea59d3a5f68558eaa1c9d44b Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 13 Jul 2019 01:57:50 -0400 Subject: [PATCH] fix: gitlab baseurl missing (#907) --- server/modules/authentication/gitlab/authentication.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/modules/authentication/gitlab/authentication.js b/server/modules/authentication/gitlab/authentication.js index 68c189fe..b2122bfb 100644 --- a/server/modules/authentication/gitlab/authentication.js +++ b/server/modules/authentication/gitlab/authentication.js @@ -14,6 +14,7 @@ module.exports = { clientID: conf.clientId, clientSecret: conf.clientSecret, callbackURL: conf.callbackURL, + baseUrl: conf.baseUrl, scope: ['read_user'] }, async (accessToken, refreshToken, profile, cb) => { try {