Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save akshar-raaj/4e931e84ffd3ad8ca30f8ea032d3e1eb to your computer and use it in GitHub Desktop.

Select an option

Save akshar-raaj/4e931e84ffd3ad8ca30f8ea032d3e1eb to your computer and use it in GitHub Desktop.
POST handler
if serializer.is_valid():
question = serializer.save()
serializer = QuestionSerializer(question)
return Response(serializer.data, status=status.HTTP_201_CREATED) # We removed the hardcoded "Question created with id %s".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment