nk20/apps/member/api/serializers.py

47 lines
1.3 KiB
Python
Raw Normal View History

2020-02-07 16:02:07 +00:00
# -*- mode: python; coding: utf-8 -*-
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
2020-02-18 10:58:42 +00:00
from ..models import Profile, Club, Role, Membership
2020-02-07 19:47:49 +00:00
from rest_framework import serializers
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.
"""
class Meta:
model = Profile
fields = '__all__'
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.
"""
class Meta:
model = Club
fields = '__all__'
2020-02-07 19:47:49 +00:00
class RoleSerializer(serializers.ModelSerializer):
2020-02-07 16:02:07 +00:00
"""
REST API Serializer for Roles.
The djangorestframework plugin will analyse the model `Role` and parse all fields in the API.
"""
class Meta:
model = Role
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.
"""
class Meta:
model = Membership
fields = '__all__'