Skip to content

Commit 69ee5ec

Browse files
tech4him1erquhart
authored andcommitted
Fix GitLab Implicit OAuth (#1439)
1 parent a7891e9 commit 69ee5ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backends/gitlab/AuthenticationPage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class AuthenticationPage extends React.Component {
1818
this.auth = new ImplicitAuthenticator({
1919
base_url: this.props.config.getIn(['backend', 'base_url'], "https://gitlab.com"),
2020
auth_endpoint: this.props.config.getIn(['backend', 'auth_endpoint'], 'oauth/authorize'),
21-
appID: this.props.config.getIn(['backend', 'app_id']),
21+
app_id: this.props.config.getIn(['backend', 'app_id']),
2222
});
2323
// Complete implicit authentication if we were redirected back to from the provider.
2424
this.auth.completeAuth((err, data) => {

0 commit comments

Comments
 (0)