Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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