generated from nhcarrigan/template
feat: ability to edit and delete comments
This commit is contained in:
@@ -3,6 +3,7 @@ export enum AuditAction {
|
||||
LOGOUT = "LOGOUT",
|
||||
LOGIN_FAILED = "LOGIN_FAILED",
|
||||
COMMENT_CREATE = "COMMENT_CREATE",
|
||||
COMMENT_UPDATE = "COMMENT_UPDATE",
|
||||
COMMENT_DELETE = "COMMENT_DELETE",
|
||||
ENTRY_CREATE = "ENTRY_CREATE",
|
||||
ENTRY_UPDATE = "ENTRY_UPDATE",
|
||||
|
||||
@@ -13,6 +13,7 @@ export interface CommentUser {
|
||||
export interface Comment {
|
||||
id: string;
|
||||
content: string;
|
||||
rawContent?: string;
|
||||
userId: string;
|
||||
user: CommentUser;
|
||||
gameId?: string;
|
||||
|
||||
Reference in New Issue
Block a user