Skip to content

Commit

Permalink
fix gitlab endpoints (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper authored Oct 30, 2024
1 parent 4c16533 commit 49f1669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/gitlab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export class GitLab {

constructor(domain: string, clientId: string, clientSecret: string, redirectURI: string) {
this.authorizationEndpoint = `https://${domain}/oauth/authorize`;
this.tokenEndpoint = domain + `https://${domain}/oauth/token`;
this.tokenRevocationEndpoint = domain + "/oauth/revoke";
this.tokenEndpoint = `https://${domain}/oauth/token`;
this.tokenRevocationEndpoint = `https://${domain}/oauth/revoke`;
this.clientId = clientId;
this.clientSecret = clientSecret;
this.redirectURI = redirectURI;
Expand Down

0 comments on commit 49f1669

Please sign in to comment.