mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 09:14:11 +05:30
Initial commit
This commit is contained in:
15
src/services/support-labels.ts
Normal file
15
src/services/support-labels.ts
Normal 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: "紧急",
|
||||
};
|
||||
Reference in New Issue
Block a user