Implemented comment viewing and posting
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user