Skip to content

Instantly share code, notes, and snippets.

@akshar-raaj
Created August 7, 2019 13:16
Show Gist options
  • Select an option

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

Select an option

Save akshar-raaj/d8f237672b59a19795a332069f0ac45f to your computer and use it in GitHub Desktop.
User serializer
class UserSerializer(serializers.ModelSerializer):
class Meta:
model = User
fields = ('username', 'email', 'first_name', 'last_name', 'password')
extra_kwargs = {
'password': {'write_only': True}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment