2020-02-07 17:02:07 +01:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-02-07 20:47:49 +01:00
|
|
|
from rest_framework import serializers
|
2020-02-07 17:02:07 +01:00
|
|
|
|
2020-07-25 19:40:30 +02:00
|
|
|
from ..models import Profile, Club, Membership
|
2020-02-18 21:14:29 +01:00
|
|
|
|
2020-02-07 17:02:07 +01:00
|
|
|
|
2020-02-07 20:47:49 +01:00
|
|
|
class ProfileSerializer(serializers.ModelSerializer):
|
2020-02-07 17:02:07 +01:00
|
|
|
"""
|
|
|
|
REST API Serializer for Profiles.
|
|
|
|
The djangorestframework plugin will analyse the model `Profile` and parse all fields in the API.
|
|
|
|
"""
|
2020-03-07 22:28:59 +01:00
|
|
|
|
2020-02-07 17:02:07 +01:00
|
|
|
class Meta:
|
|
|
|
model = Profile
|
|
|
|
fields = '__all__'
|
2020-03-19 18:53:06 +01:00
|
|
|
read_only_fields = ('user', )
|
2020-02-07 17:02:07 +01:00
|
|
|
|
|
|
|
|
2020-02-07 20:47:49 +01:00
|
|
|
class ClubSerializer(serializers.ModelSerializer):
|
2020-02-07 17:02:07 +01:00
|
|
|
"""
|
|
|
|
REST API Serializer for Clubs.
|
|
|
|
The djangorestframework plugin will analyse the model `Club` and parse all fields in the API.
|
|
|
|
"""
|
2020-03-07 22:28:59 +01:00
|
|
|
|
2020-02-07 17:02:07 +01:00
|
|
|
class Meta:
|
|
|
|
model = Club
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
|
2020-02-07 20:47:49 +01:00
|
|
|
class MembershipSerializer(serializers.ModelSerializer):
|
2020-02-07 17:02:07 +01:00
|
|
|
"""
|
|
|
|
REST API Serializer for Memberships.
|
|
|
|
The djangorestframework plugin will analyse the model `Memberships` and parse all fields in the API.
|
|
|
|
"""
|
2020-03-07 22:28:59 +01:00
|
|
|
|
2020-02-07 17:02:07 +01:00
|
|
|
class Meta:
|
|
|
|
model = Membership
|
|
|
|
fields = '__all__'
|