Implement on_after_update event handle

This commit is contained in:
François Voron
2020-02-03 10:48:53 +01:00
parent 05b1df9a16
commit 9353bb79cb
6 changed files with 98 additions and 8 deletions

View File

@@ -41,6 +41,10 @@ def fastapi_users(
def on_after_forgot_password():
return request.param()
@fastapi_users.on_after_update()
def on_after_update():
return request.param()
return fastapi_users