Added Types for Tickets

This commit is contained in:
2025-09-28 17:44:17 +02:00
parent f683f149e6
commit f51ced1c31

View File

@@ -456,6 +456,18 @@ const dataTypes: any[] = {
supabaseSelectWithInformation: "*, statementallocations(*, bs_id(*))", supabaseSelectWithInformation: "*, statementallocations(*, bs_id(*))",
showTabs: [{label: 'Informationen'},{label: 'Buchungen'}] showTabs: [{label: 'Informationen'},{label: 'Buchungen'}]
}, },
tickets: {
isArchivable: true,
label: "Tickets",
labelSingle: "Ticket",
},
ticketmessages: {
isArchivable: true,
label: "Nachrichten",
labelSingle: "Nachricht",
},
} }
export default async function resourceRoutes(server: FastifyInstance) { export default async function resourceRoutes(server: FastifyInstance) {