У меня есть следующий сериализатор:
from rest_framework import serializers
from allauth.account import app_settings as allauth_settings
from allauth.utils import email_address_exists
from allauth.account.adapter import get_adapter
from allauth.account.utils import setup_user_email
from kofiapi.api.users.models import User, UserProfile
class UserProfileSerializer(serializers.ModelSerializer):
class Meta:
model = UserProfile
fields = ('dob', 'phone', 'receive_newsletter')
class UserSerializer(serializers.HyperlinkedModelSerializer):
profile = UserProfileSerializer(required=True)
class Meta:
model = User
fields = ('url',
'email',
'first_name',
'last_name',
'password',
'profile')
extra_kwargs = {'password': {'write_only': True}}
def create(self, validated_data):
profile_data = validated_data.pop('profile')
password = validated_data.pop('password')
user = User(**validated_data)
user.set_password(password)
user.save()
UserProfile.objects.create(user=user, **profile_data)
return user
def update(self, instance, validated_data):
profile_data = validated_data.pop('profile')
profile = instance.profile
instance.email = validated_data.get('email', instance.name)
instance.save()
profile.dob = profile_data.get('dob', profile.dob)
profile.phone = profile_data.get('phone', profile.phone)
profile.receive_newsletter = profile_data.get('receive_newsletter', profile.receive_newsletter)
profile.save()
return instance
, и у меня есть соответствующие маршруты:
router = DefaultRouter()
router.register(r"users", UserViewSet)
urlpatterns = [
path('', include(router.urls)),
path('rest-auth/', include('rest_auth.urls')),
#path('rest-auth/registration/', include('rest_auth.registration.urls')),
]
Я использую:
'rest_framework',
'rest_framework.authtoken',
'rest_auth',
настроен как:
AUTH_USER_MODEL = 'users.User'
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.TokenAuthentication',
),
}
при входе в систему я получаю только токен-ключ:
{
"key": "8c0d808c0413932e478be8882b2ae829efa74b3e"
}
как мне сделать так, чтобы он возвращал информацию о пользователе вместе с ключом при регистрации / авторизации? Что-то вроде:
{"key": "8c0d808c0413932e478be8882b2ae829efa74b3e", "user": {// user data}}