quivr/backend/modules/notification/repository/notifications_interface.py
Stan Girard e1ad3dfb2a
feat(notifications): implemented notifications with RLS and realtime (#2525)
This pull request adds the implementation of the notifications feature,
including the ability to create, update, and delete notifications.
2024-05-01 11:11:12 -07:00

34 lines
925 B
Python

from abc import ABC, abstractmethod
from uuid import UUID
from modules.notification.dto.inputs import NotificationUpdatableProperties, CreateNotification
from modules.notification.entity.notification import Notification
class NotificationInterface(ABC):
@abstractmethod
def add_notification(self, notification: CreateNotification) -> Notification:
"""
Add a notification
"""
pass
@abstractmethod
def update_notification_by_id(
self, notification_id: UUID, notification: NotificationUpdatableProperties
) -> Notification:
"""Update a notification by id"""
pass
@abstractmethod
def remove_notification_by_id(self, notification_id: UUID):
"""
Remove a notification by id
Args:
notification_id (UUID): The id of the notification
Returns:
str: Status message
"""
pass