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