forked from Kamva-Academy/Kamva-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix a bug in ContactMessageSerializers
- Loading branch information
1 parent
5cdb0a2
commit f1e16a7
Showing
3 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from rest_framework import serializers | ||
from .models import * | ||
|
||
|
||
class ContactMessageSerializers(serializers.ModelSerializer): | ||
class Meta: | ||
model = ContactMessage | ||
field = ['id', 'object' , 'text', 'email'] | ||
fields = ['id', 'object', 'text', 'email'] | ||
text = serializers.CharField(required=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters