Implemented comment viewing and posting

This commit is contained in:
2026-03-01 12:52:22 -05:00
parent 5cdbf72328
commit 5483e42bb4
9 changed files with 203 additions and 18 deletions

View File

@@ -16,9 +16,9 @@ export interface DiscussionPost<T = any> {
export interface DiscussionComment {
id?: number;
post_id: number;
poster_id: number;
poster_id?: number;
content: string;
created_at: Date;
updated_at: Date;
is_deleted: boolean;
created_at?: Date;
updated_at?: Date;
is_deleted?: boolean;
}