Skip to content

Instantly share code, notes, and snippets.

@akshar-raaj
Created July 22, 2019 19:20
Show Gist options
  • Select an option

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

Select an option

Save akshar-raaj/e842056a32970845304cae8146b77068 to your computer and use it in GitHub Desktop.
class UserSerializer(serializers.ModelSerializer):
user_name = serializers.CharField(source='username')
class Meta:
model = User
fields = ('user_name', 'email', 'first_name', 'last_name')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment