Skip to content

Instantly share code, notes, and snippets.

@sankalpjonn
Created November 15, 2020 03:14
Show Gist options
  • Save sankalpjonn/4d69bb0c0de94789842fe9eb23e8e882 to your computer and use it in GitHub Desktop.
Save sankalpjonn/4d69bb0c0de94789842fe9eb23e8e882 to your computer and use it in GitHub Desktop.
from rest_framework import serializers
from .models import Note
class NoteSerializer(serializers.ModelSerializer):
is_active = serializers.BooleanField(read_only=True)
class Meta:
model = Note
fields = ('id', 'title', 'content', 'last_udpated_on', 'is_active')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment