From df409576ffffc76d1da6f5eb073c77f994bfc0b2 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Fri, 28 Mar 2025 10:42:46 +0100 Subject: [PATCH] Update code in endpoints/logout.post.py --- endpoints/logout.post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/logout.post.py b/endpoints/logout.post.py index 9294eba..ed0517d 100644 --- a/endpoints/logout.post.py +++ b/endpoints/logout.post.py @@ -15,4 +15,4 @@ async def logout( current_user: User = Depends(get_current_user) ): logout_user(db, current_user) - return {"message": "Logout successful"} \ No newline at end of file + return {"message": "Logged out successfully"} \ No newline at end of file