Skip to content

Commit

Permalink
force Auth0 to prompt for login when authenticating, to fix issue wit…
Browse files Browse the repository at this point in the history
…h users not able to reset their authentication
  • Loading branch information
vemonet committed May 15, 2024
1 parent 9c3d26c commit 696392f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/src/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def login() -> RedirectResponse:
'scope': settings.scope,
'response_type': settings.response_type,
'client_id': settings.client_id,
'prompt': 'login',
})}"""
return RedirectResponse(login_url)

Expand Down

0 comments on commit 696392f

Please sign in to comment.