Created
April 22, 2020 14:43
-
-
Save paulonteri/ba3261fca1dc7b9fa078386a0303c4a0 to your computer and use it in GitHub Desktop.
A simple Model Serializer
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 Note | |
class NoteSerializer(serializers.ModelSerializer): | |
class Meta: | |
model = Note | |
fields = ['id', 'title', 'description', 'note'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment