mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
16 lines
337 B
Python
16 lines
337 B
Python
from rest_framework import serializers
|
|
|
|
from cookbook.models import MealPlan, MealType
|
|
|
|
|
|
class MealPlanSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = MealPlan
|
|
fields = '__all__'
|
|
|
|
|
|
class MealTypeSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = MealType
|
|
fields = '__all__'
|