fmt
Some checks failed
Deploy on push / deploy (push) Failing after 34s

This commit is contained in:
2025-09-26 21:13:23 +03:00
parent 05c188df62
commit ee799120f6

View File

@@ -45,7 +45,9 @@ async def logout_endpoint(request: Request) -> JSONResponse | RedirectResponse:
if "application/json" in accept_header:
# JSON API ответ
response = JSONResponse({"success": True, "message": "Logged out successfully"})
response: JSONResponse | RedirectResponse = JSONResponse(
{"success": True, "message": "Logged out successfully"}
)
else:
# Browser redirect
response = RedirectResponse(url=redirect_url, status_code=302)