Make erdnaxe be happy
This commit is contained in:
parent
3eb0c185f2
commit
d0206fb790
30 changed files with 215 additions and 205 deletions
|
|
@ -11,6 +11,7 @@ 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__'
|
||||
|
|
@ -21,6 +22,7 @@ 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__'
|
||||
|
|
@ -31,6 +33,7 @@ class RoleSerializer(serializers.ModelSerializer):
|
|||
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__'
|
||||
|
|
@ -41,6 +44,7 @@ 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__'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue