Skip to content

Commit

Permalink
Merge branch 'refs/heads/feat/new-login' into deploy/dev
Browse files Browse the repository at this point in the history
* refs/heads/feat/new-login:
  fix: get_authorization_url invite token
  • Loading branch information
ZhouhaoJiang committed Sep 2, 2024
2 parents 3223aac + 0da352a commit 7dbe8b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/console/auth/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get(self, provider: str):
if not oauth_provider:
return {"error": "Invalid provider"}, 400

auth_url = oauth_provider.get_authorization_url(invite_token)
auth_url = oauth_provider.get_authorization_url(invite_token=invite_token)
return redirect(auth_url)


Expand Down

0 comments on commit 7dbe8b5

Please sign in to comment.