mirror of
https://github.com/mosh-hamedani/helpdesk.git
synced 2026-05-21 11:58:19 +02:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
export const ticketCategories = [
|
|
"general_question",
|
|
"technical_question",
|
|
"refund_request",
|
|
] as const;
|
|
|
|
export type TicketCategory = (typeof ticketCategories)[number];
|
|
|
|
export const categoryLabel: Record<TicketCategory, string> = {
|
|
general_question: "General",
|
|
technical_question: "Technical",
|
|
refund_request: "Refund",
|
|
};
|