feat: implement check functionality

This commit is contained in:
2025-09-13 07:45:19 +02:00
parent ec1a2ba7f0
commit fab05f32ec
15 changed files with 258 additions and 61 deletions

View File

@@ -4,12 +4,13 @@ export interface Channel {
created_at: string;
}
export interface Message {
id: number;
channel_id: number;
content: string;
created_at: string;
}
export interface Message {
id: number;
channel_id: number;
content: string;
created_at: string;
checked?: boolean | null;
}
export interface File {
id: number;
@@ -18,4 +19,4 @@ export interface File {
file_path: string;
file_type: string;
created_at: string;
}
}