Add GET endpoint for meals

This commit is contained in:
Backend IM Bot 2025-03-27 12:19:20 +01:00
parent ac92656835
commit 8e4ab03534

18
endpoints/meals.get.py Normal file
View File

@ -0,0 +1,18 @@
# Entity: Meal
from fastapi import APIRouter, Depends, status
from sqlalchemy.orm import Session
from typing import List
from core.database import get_db
from models.meal import Meal
from schemas.meal import MealSchema
from helpers.meal_helpers import get_all_meals
router = APIRouter()
@router.get("/meals", status_code=200, response_model=List[MealSchema])
async def get_meals(
db: Session = Depends(get_db)
):
meals = get_all_meals(db)
return meals