Skip to content

Instantly share code, notes, and snippets.

@Adarshreddyash
Created August 3, 2020 16:26
Show Gist options
  • Select an option

  • Save Adarshreddyash/c62d2dac120719b921e5b74f58fafd9c to your computer and use it in GitHub Desktop.

Select an option

Save Adarshreddyash/c62d2dac120719b921e5b74f58fafd9c to your computer and use it in GitHub Desktop.
from rest_framework import serializers
from users.models import CustomUser
class UserSerializer(serializers.ModelSerializer):
class Meta:
model = CustomUser
fields = ['id', 'email', 'profile_name', 'avatar',]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment