Files
zhenyi 9eb77ab98b refactor(models): update data models and remove deprecated IM entities
- Update channel, notification, PR, repo, user, workspace models
- Remove deleted IM models: articles, channel follows, message
  attachments/bookmarks/drafts/edit history/embeds/mentions/pins/
  polls/reactions/threads, saved messages, thread read states
- Add new PR models: review requests, templates
- Add repo release assets model
- Add base_info module for API detail responses
2026-06-10 18:49:37 +08:00

12 lines
430 B
Rust

pub mod notification;
pub mod notification_blocks;
pub mod notification_deliveries;
pub mod notification_subscriptions;
pub mod notification_templates;
pub use notification::{Notification, NotificationDetail};
pub use notification_blocks::NotificationBlock;
pub use notification_deliveries::NotificationDelivery;
pub use notification_subscriptions::NotificationSubscription;
pub use notification_templates::NotificationTemplate;