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) => {