Skip to content

Commit

Permalink
Fix GitLab Implicit OAuth
Browse files Browse the repository at this point in the history
  • Loading branch information
tech4him1 authored Jun 14, 2018
1 parent a7891e9 commit e4455a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backends/gitlab/AuthenticationPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit e4455a4

Please sign in to comment.