- 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
26 lines
679 B
Rust
26 lines
679 B
Rust
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_json::Value;
|
|
use sqlx::FromRow;
|
|
use uuid::Uuid;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)]
|
|
pub struct RoomMessageModel {
|
|
pub id: Uuid,
|
|
pub room: Uuid,
|
|
pub seq: i64,
|
|
pub thread: Option<Uuid>,
|
|
pub parent: Option<Uuid>,
|
|
pub author: Uuid,
|
|
pub content: String,
|
|
pub content_type: String,
|
|
pub pinned: bool,
|
|
pub system_type: Option<String>,
|
|
#[serde(default)]
|
|
pub metadata: Value,
|
|
pub edited_at: Option<DateTime<Utc>>,
|
|
pub created_at: DateTime<Utc>,
|
|
pub updated_at: DateTime<Utc>,
|
|
pub deleted_at: Option<DateTime<Utc>>,
|
|
}
|