From 9b8d03064ba49948461c7fb15a015c049b4ff625 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Fri, 7 Mar 2025 11:55:52 +0100 Subject: [PATCH] feat: Add endpoint /forgot-password --- app/api/endpoints/forgot-password.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/api/endpoints/forgot-password.py diff --git a/app/api/endpoints/forgot-password.py b/app/api/endpoints/forgot-password.py new file mode 100644 index 0000000..a41202d --- /dev/null +++ b/app/api/endpoints/forgot-password.py @@ -0,0 +1,7 @@ +from fastapi import APIRouter + +router = APIRouter() + +@router.post("/forgot-password") +async def forgot_password(username: str, password: str): + return {"message": "Forgot password!", "username": username} \ No newline at end of file