notification: change notification data

This commit is contained in:
behruz-dev
2025-10-30 16:41:30 +05:00
parent 21b868c06f
commit 22a54480a4
3 changed files with 5 additions and 3 deletions

View File

@@ -7,5 +7,5 @@ class NotificationHistorySerializer(serializers.ModelSerializer):
class Meta:
model = NotificationHistory
fields = [
'id', 'title', 'body', 'data', 'is_read'
'id', 'title', 'body', 'data', 'is_read', 'created_at'
]