mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
10 lines
233 B
Python
10 lines
233 B
Python
from rest_framework import serializers
|
|
|
|
from cookbook.models import MealPlan
|
|
|
|
|
|
class MealPlanSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = MealPlan
|
|
fields = ['recipe', 'title', 'note', 'meal_type']
|