Add GET endpoint for food

This commit is contained in:
Backend IM Bot 2025-03-28 15:19:04 +00:00
parent daec2c5d58
commit f5da81fdc5

19
endpoints/food.get.py Normal file
View File

@ -0,0 +1,19 @@
# Entity: Food
from fastapi import APIRouter, Depends, HTTPException, status
from sqlalchemy.orm import Session
from typing import List
from core.database import get_db
from models.food import Food
from schemas.food import FoodSchema
from helpers.food_helpers import get_all_foods
router = APIRouter()
@router.get("/food", status_code=200, response_model=List[FoodSchema])
async def get_food_list(
db: Session = Depends(get_db)
):
"""Get all food items in the menu"""
foods = get_all_foods(db)
return foods