mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-30 23:56:50 -05:00
16 lines
463 B
TypeScript
16 lines
463 B
TypeScript
import type { UserReportCategory } from "~/db/tables";
|
|
|
|
export const USER_REPORT = {
|
|
DESCRIPTION_MAX_LENGTH: 2000,
|
|
MATCH_ID_MAX_LENGTH: 10,
|
|
};
|
|
|
|
/** English display names, shown on the staff-only admin tab and in the Discord webhook embed. */
|
|
export const USER_REPORT_CATEGORY_LABELS: Record<UserReportCategory, string> = {
|
|
INAPPROPRIATE_CONTENT: "Inappropriate content",
|
|
ALTING: "Alting",
|
|
HARASSMENT: "Harassment",
|
|
CHEATING: "Cheating",
|
|
OTHER: "Other",
|
|
};
|