- Add ArticleFeed component for article-based channels - Implement ArticleComposer with draft persistence - Add Newspaper icon for article room type - Update ChannelPage to conditionally render article feed vs message view - Add article-related API endpoints and models - Reset thread view when switching rooms - Add room type check in channel sidebar - Update CSS to hide scrollbars globally - Add gRPC message size limit configuration - Fix git diff tree handling
19 lines
272 B
Rust
19 lines
272 B
Rust
use db::AppDatabase;
|
|
|
|
pub mod agent;
|
|
pub mod ai;
|
|
pub mod issues;
|
|
pub mod logs;
|
|
pub mod notify;
|
|
pub mod pull_request;
|
|
pub mod repos;
|
|
pub mod channel;
|
|
pub mod system;
|
|
pub mod users;
|
|
pub mod workspace;
|
|
|
|
#[derive(Clone)]
|
|
pub struct DatabaseMapper {
|
|
pub db: AppDatabase,
|
|
}
|