1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-25 12:57:25 +02:00

Add API endpoint to get volunteers names and emails, for tournament organizers only, to easily add juries

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2024-03-23 11:47:42 +01:00
parent 0ebee1910b
commit 40aa2e520f
3 changed files with 29 additions and 3 deletions

View File

@ -1,6 +1,7 @@
# 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
from rest_polymorphic.serializers import PolymorphicSerializer
@ -44,3 +45,9 @@ class PaymentSerializer(serializers.ModelSerializer):
class Meta:
model = Payment
fields = '__all__'
class BasicUserSerializer(serializers.ModelSerializer):
class Meta:
model = User
fields = ['first_name', 'last_name', 'email', ]