9 lines
271 B
Python
9 lines
271 B
Python
from rest_framework import serializers
|
|
|
|
from notifications.models import Notification
|
|
|
|
|
|
class NotificationSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Notification
|
|
fields = ['id', 'text', 'is_read', 'type', 'importance', 'created_at']
|