Added Status to Tickets

Fixed Telegram Notification in Tickets
Added Ticket Closing
This commit is contained in:
2025-02-11 19:22:49 +01:00
parent 1dc71d5791
commit 80af069669
2 changed files with 7 additions and 2 deletions

View File

@@ -32,8 +32,9 @@ const createTicket = async () => {
if(messageError) {
console.log(messageError)
} else {
console.log(ticketData)
useFunctions().useSendTelegramNotification(`Ticket von ${profileStore.activeProfile.fullName} erstellt : ${itemInfo.value.content}`)
router.push(`/support/${ticketData.id}`)
await useFunctions().useSendTelegramNotification(`Ticket von ${profileStore.activeProfile.fullName} erstellt : ${itemInfo.value.content}`)
}
}
}