Created
August 19, 2019 14:22
-
-
Save parvbhullar/bcf6b667259a0751741edc916d8760dd to your computer and use it in GitHub Desktop.
ToDo App - serializers.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from rest_framework import serializers | |
from .models import ToDo | |
class TodoSerializer(serializers.ModelSerializer): | |
class Meta: | |
model = ToDo | |
fields = ('id', 'task_title', 'task_description', 'completed') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment