feat: implement check functionality
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user