* feat: added new issue subscriber table * dev: notification model * feat: added CRUD operation for issue subscriber * Revert "feat: added CRUD operation for issue subscriber" This reverts commit b22e0625768f0b096b5898936ace76d6882b0736. * feat: added CRUD operation for issue subscriber * dev: notification models and operations * dev: remove delete endpoint response data * dev: notification endpoints and fix bg worker for saving notifications * feat: added list and unsubscribe function in issue subscriber * dev: filter by snoozed and response update for list and permissions * dev: update issue notifications * dev: notification segregation * dev: update notifications * dev: notification filtering * dev: add issue name in notifications * dev: notification new endpoints --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
10 lines
212 B
Python
10 lines
212 B
Python
# Module imports
|
|
from .base import BaseSerializer
|
|
from plane.db.models import Notification
|
|
|
|
class NotificationSerializer(BaseSerializer):
|
|
|
|
class Meta:
|
|
model = Notification
|
|
fields = "__all__"
|
|
|