Update report-abuse.ts

This commit is contained in:
Kio! 2024-11-03 19:50:25 +00:00
parent e783359aca
commit 8477909af2

View file

@ -66,10 +66,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
throw new ApiError(meta.errors.cannotReportYourself);
}
if (await this.roleService.isAdministrator(targetUser)) {
throw new ApiError(meta.errors.cannotReportAdmin);
}
await this.abuseReportService.report([{
targetUserId: targetUser.id,
targetUserHost: targetUser.host,