Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: clarify 403 response in PW migration hook #2025

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,10 @@ The following steps are necessary to set up password migration using a web hook:
After a successful response, the identity will be updated with the hashed password and the user will be logged in. The
password migration hook will not be called again for this identity.

Any other response will be treated as an invalid password, and the user will be notified that the password is incorrect.
If the password does not match, the webhook should return `403 Forbidden`, to indicate to the user that the password did not
match.

Any other response will be treated as an unexpected error, and the user will not be logged in.

### Social sign-in connections

Expand Down
Loading