Add docker

This commit is contained in:
2026-01-10 17:51:08 +03:00
parent 62d33acde9
commit 8167c77a27
36 changed files with 1351 additions and 117 deletions
+2 -2
View File
@@ -98,9 +98,9 @@ async def change_password(
@router.post("/password/reset")
async def send_reset_password_email(
username: str
username_email: str
) -> Dict:
await UserService.send_reset_password_email(username)
await UserService.send_reset_password_email(username_email)
return {"status": True, "message": "Successfully send email reset password"}
@router.post("/password/reset/{token}")