Update code in endpoints/logout.post.py

This commit is contained in:
Backend IM Bot 2025-03-23 17:51:12 +01:00
parent 08ef540a92
commit e0e1785bf7

View File

@ -2,24 +2,22 @@ from fastapi import APIRouter, HTTPException
laptops = [ laptops = [
{"name": "Dell XPS 13"}, {"name": "Dell XPS 13"},
{"name": "MacBook Pro 16"},
{"name": "Lenovo ThinkPad X1 Carbon"}, {"name": "Lenovo ThinkPad X1 Carbon"},
{"name": "HP Spectre x360"}, {"name": "HP Spectre x360"},
{"name": "Apple MacBook Pro"},
{"name": "Asus ZenBook Pro Duo"} {"name": "Asus ZenBook Pro Duo"}
] ]
router = APIRouter() router = APIRouter()
@router.post("/logout", response_model=list) @router.post("/logout")
async def logout(): async def logout():
"""Returns list of laptop names""" """Returns list of laptop names"""
if request.method != "POST": if request.method != "POST":
raise HTTPException(status_code=405, detail="Method Not Allowed") raise HTTPException(status_code=405, detail="Method Not Allowed")
laptop_names = [laptop["name"] for laptop in laptops]
return { return {
"method": "POST", "method": "POST",
"_verb": "post", "_verb": "post",
"data": laptop_names "laptops": [laptop["name"] for laptop in laptops]
} }