mirror of https://gitlab.crans.org/bde/nk20
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from rest_framework import serializers
|
|
|
|
from ..models import ActivityType, Activity, Guest
|
|
|
|
|
|
class ActivityTypeSerializer(serializers.ModelSerializer):
|
|
"""
|
|
REST API Serializer for Activity types.
|
|
The djangorestframework plugin will analyse the model `ActivityType` and parse all fields in the API.
|
|
"""
|
|
class Meta:
|
|
model = ActivityType
|
|
fields = '__all__'
|
|
|
|
|
|
class ActivitySerializer(serializers.ModelSerializer):
|
|
"""
|
|
REST API Serializer for Activities.
|
|
The djangorestframework plugin will analyse the model `Activity` and parse all fields in the API.
|
|
"""
|
|
class Meta:
|
|
model = Activity
|
|
fields = '__all__'
|
|
|
|
|
|
class GuestSerializer(serializers.ModelSerializer):
|
|
"""
|
|
REST API Serializer for Guests.
|
|
The djangorestframework plugin will analyse the model `Guest` and parse all fields in the API.
|
|
"""
|
|
class Meta:
|
|
model = Guest
|
|
fields = '__all__'
|