From f51ced1c3195eb2e7e96aa609c887ea25cfff229 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Sun, 28 Sep 2025 17:44:17 +0200 Subject: [PATCH] Added Types for Tickets --- src/routes/resources.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/routes/resources.ts b/src/routes/resources.ts index 5891747..0527b90 100644 --- a/src/routes/resources.ts +++ b/src/routes/resources.ts @@ -456,6 +456,18 @@ const dataTypes: any[] = { supabaseSelectWithInformation: "*, statementallocations(*, bs_id(*))", 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) {