mosh-helpdesk/core/constants/ticket-category.ts

14 lines
338 B
TypeScript
Raw Normal View History

2026-02-23 18:35:58 +01:00
export const ticketCategories = [
"general_question",
"technical_question",
"refund_request",
] as const;
export type TicketCategory = (typeof ticketCategories)[number];
2026-02-23 21:09:33 +01:00
export const categoryLabel: Record<TicketCategory, string> = {
general_question: "General",
technical_question: "Technical",
refund_request: "Refund",
};