From e4455a425ef584a0d1ce4eba088cdc0c52fd1978 Mon Sep 17 00:00:00 2001 From: Caleb Date: Thu, 14 Jun 2018 08:02:11 -0600 Subject: [PATCH] Fix GitLab Implicit OAuth --- src/backends/gitlab/AuthenticationPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/gitlab/AuthenticationPage.js b/src/backends/gitlab/AuthenticationPage.js index 7769911e5fb6..c0c7429dc1d5 100644 --- a/src/backends/gitlab/AuthenticationPage.js +++ b/src/backends/gitlab/AuthenticationPage.js @@ -18,7 +18,7 @@ export default class AuthenticationPage extends React.Component { this.auth = new ImplicitAuthenticator({ base_url: this.props.config.getIn(['backend', 'base_url'], "https://gitlab.com"), auth_endpoint: this.props.config.getIn(['backend', 'auth_endpoint'], 'oauth/authorize'), - appID: this.props.config.getIn(['backend', 'app_id']), + app_id: this.props.config.getIn(['backend', 'app_id']), }); // Complete implicit authentication if we were redirected back to from the provider. this.auth.completeAuth((err, data) => {