Initial commit

This commit is contained in:
JetSprow
2026-04-29 05:12:39 +10:00
commit 27dbca9cbf
379 changed files with 43486 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import type { SupportTicketPriority, SupportTicketStatus } from "@prisma/client";
export const supportTicketStatusLabels: Record<SupportTicketStatus, string> = {
OPEN: "待处理",
USER_REPLIED: "用户已回复",
ADMIN_REPLIED: "管理员已回复",
CLOSED: "已关闭",
};
export const supportTicketPriorityLabels: Record<SupportTicketPriority, string> = {
LOW: "低",
NORMAL: "普通",
HIGH: "高",
URGENT: "紧急",
};