feat(messages): enhance message and edit history with channel names and content diffs

This commit is contained in:
asepharyana
2026-08-26 18:26:15 +07:00
parent 709074935f
commit cacebfd94e
6 changed files with 234 additions and 67 deletions
@@ -18,6 +18,7 @@ export interface EditHistoryRow {
id: string;
message_id: string;
old_content: string;
new_content: string;
edited_at: number;
channel_id: string | null;
channel_name: string | null;
@@ -175,6 +175,7 @@ export interface SemanticSearchResult {
export interface MessageActivityBucket {
channelId: string;
channelName: string;
hour: number;
count: number;
}