mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-11 10:36:46 +03:00
15 lines
362 B
Python
15 lines
362 B
Python
|
from django.contrib.auth import get_user_model
|
||
|
from rest_framework import serializers
|
||
|
|
||
|
User = get_user_model()
|
||
|
|
||
|
|
||
|
class UserSerializer(serializers.ModelSerializer):
|
||
|
class Meta:
|
||
|
model = User
|
||
|
fields = ["username", "name", "url"]
|
||
|
|
||
|
extra_kwargs = {
|
||
|
"url": {"view_name": "api:user-detail", "lookup_field": "username"}
|
||
|
}
|