Feat: 複数ノートの通報機能
This commit is contained in:
parent
4c135a5ca1
commit
6849d510ac
10 changed files with 197 additions and 69 deletions
|
|
@ -157,6 +157,7 @@ export interface AdminEventTypes {
|
|||
targetUserId: MiUser['id'],
|
||||
reporterId: MiUser['id'],
|
||||
comment: string;
|
||||
notes: any[];
|
||||
};
|
||||
}
|
||||
//#endregion
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ export class AbuseUserReportEntityService {
|
|||
id: report.id,
|
||||
createdAt: this.idService.parse(report.id).date.toISOString(),
|
||||
comment: report.comment,
|
||||
notes: report.notes,
|
||||
resolved: report.resolved,
|
||||
reporterId: report.reporterId,
|
||||
targetUserId: report.targetUserId,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue