Add GET endpoint for meals
This commit is contained in:
parent
ac92656835
commit
8e4ab03534
18
endpoints/meals.get.py
Normal file
18
endpoints/meals.get.py
Normal 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
|
Loading…
x
Reference in New Issue
Block a user