Update code in endpoints/logout.post.py

This commit is contained in:
Backend IM Bot 2025-03-23 17:54:37 +01:00
parent e0e1785bf7
commit 3305435dce

View File

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