can add images to forum posts and comments
This commit is contained in:
@@ -266,6 +266,7 @@ export interface ForumPost {
|
||||
commentCount: number;
|
||||
isPinned: boolean;
|
||||
acceptedAnswerId?: string;
|
||||
images?: string[];
|
||||
author?: User;
|
||||
tags?: PostTag[];
|
||||
comments?: ForumComment[];
|
||||
@@ -280,6 +281,7 @@ export interface ForumComment {
|
||||
content: string;
|
||||
parentCommentId?: string;
|
||||
isDeleted: boolean;
|
||||
images?: string[];
|
||||
author?: User;
|
||||
replies?: ForumComment[];
|
||||
createdAt: string;
|
||||
|
||||
Reference in New Issue
Block a user