Skip to content

Commit

Permalink
Merge pull request #97 from yjinjo/master
Browse files Browse the repository at this point in the history
Fix sso_access_token to refresh_token
  • Loading branch information
yjinjo authored May 31, 2024
2 parents 0d8f861 + 6692c31 commit 414cec1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _redirect_response(domain_name: str, refresh_token: str) -> RedirectResponse
)
if refresh_token:
return RedirectResponse(
f"{console_domain}/saml?sso_access_token={refresh_token}",
f"{console_domain}/saml?refresh_token={refresh_token}",
status_code=302,
)

Expand Down

0 comments on commit 414cec1

Please sign in to comment.