From 7f4e392877db49320be17f90f57104edf9c0a560 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 23 Jul 2019 21:21:24 -0400 Subject: [PATCH] fix: gitlab baseurl typo (#934) --- server/modules/authentication/gitlab/authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/authentication/gitlab/authentication.js b/server/modules/authentication/gitlab/authentication.js index b2122bfb..56e4f92a 100644 --- a/server/modules/authentication/gitlab/authentication.js +++ b/server/modules/authentication/gitlab/authentication.js @@ -14,7 +14,7 @@ module.exports = { clientID: conf.clientId, clientSecret: conf.clientSecret, callbackURL: conf.callbackURL, - baseUrl: conf.baseUrl, + baseURL: conf.baseUrl, scope: ['read_user'] }, async (accessToken, refreshToken, profile, cb) => { try {