Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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