1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Add id field.

This commit is contained in:
Drew Larson 2017-02-04 08:57:50 -06:00
parent bb69acfbcc
commit 882e17f27b

View File

@ -1,5 +1,4 @@
from rest_framework import serializers
from rest_framework.serializers import ModelSerializer
from .models import Member
@ -7,6 +6,7 @@ from .models import Member
class MemberSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = Member
fields = ('email', 'email_consent', 'email_consent', 'first_name', 'last_name', 'preferred_name',
fields = ('id', 'email', 'email_consent', 'email_consent', 'first_name', 'last_name', 'preferred_name',
'date_of_birth', 'guardian_name', 'phone', 'street', 'city', 'province', 'country', 'post_code',
'waiver', 'is_active', 'banned', 'suspended')
'waiver', 'is_active', 'banned', 'suspended')
id = serializers.ReadOnlyField()