Skip to content

Commit

Permalink
Well known endpoint for change-password
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Aug 20, 2024
1 parent 1e1b0f8 commit c4036e9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions funnel/views/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,6 +979,12 @@ def delete(self) -> ReturnView:
)


@app.route('/.well-known/change-password')
def well_known_change_password() -> ReturnView:
"""Redirect to the change_password page."""
return redirect(url_for('change_password'), 303)


# MARK: Compatibility routes -----------------------------------------------------------


Expand Down

0 comments on commit c4036e9

Please sign in to comment.