mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-30 23:39:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2018-2025 by BDE ENS Paris-Saclay
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| from rest_framework import serializers
 | |
| 
 | |
| from ..models import Profile, Club, Membership
 | |
| 
 | |
| 
 | |
| class ProfileSerializer(serializers.ModelSerializer):
 | |
|     """
 | |
|     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__'
 | |
|         read_only_fields = ('user', )
 | |
| 
 | |
| 
 | |
| class ClubSerializer(serializers.ModelSerializer):
 | |
|     """
 | |
|     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__'
 | |
| 
 | |
| 
 | |
| class MembershipSerializer(serializers.ModelSerializer):
 | |
|     """
 | |
|     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__'
 |