Expand description
Notification management module for handling CRUD operations on notifications.
This module provides functionality to create, read, update, and delete notifications in the system. It includes endpoints for managing both user notifications and role-based notifications.
Re-exports§
pub use user::list_user_notifications;
pub use user::count_unread_user_notifications;
pub use user::get_user_notification_by_id;
pub use user::create_user_notification;
pub use user::mark_user_notification_as_read;
pub use user::mark_all_user_notifications_as_read;
pub use user::delete_user_notification;
pub use user::delete_read_user_notifications;
pub use user::get_all_user_notifications_with_count;
pub use role::list_role_notifications;
pub use role::create_role_notification;
pub use acknowledge::acknowledge_notification;