Skip to content

Instantly share code, notes, and snippets.

@akshar-raaj
Created May 7, 2019 05:57
Show Gist options
  • Save akshar-raaj/72a1e524756f5bbba811a3dbad4902ec to your computer and use it in GitHub Desktop.
Save akshar-raaj/72a1e524756f5bbba811a3dbad4902ec to your computer and use it in GitHub Desktop.
QuestionSerializer
from rest_framework import serializers
from polls.models import Question
class QuestionSerializer(serializers.ModelSerializer):
class Meta
model = Question
exclude = ()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment