mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 21:27:11 +00:00
1d81213773
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
20 lines
437 B
Python
20 lines
437 B
Python
# Copyright (C) 2020 by Animath
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django.contrib.auth.models import User
|
|
from rest_framework import serializers
|
|
|
|
|
|
class UserSerializer(serializers.ModelSerializer):
|
|
"""
|
|
Serialize a User object into JSON.
|
|
"""
|
|
class Meta:
|
|
model = User
|
|
exclude = (
|
|
'username',
|
|
'password',
|
|
'groups',
|
|
'user_permissions',
|
|
)
|