mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
16 lines
368 B
Python
16 lines
368 B
Python
from rest_framework import serializers
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
class UserSerializer(serializers.HyperlinkedModelSerializer):
|
|
""" Serializer for a User
|
|
"""
|
|
|
|
class Meta:
|
|
model = User
|
|
fields = ('pk',
|
|
'username',
|
|
'first_name',
|
|
'last_name',
|
|
'email',)
|