support: remove createTicket

there is no form to create tickets anymore since a while
This commit is contained in:
Girish Ramakrishnan
2025-06-06 09:51:07 +02:00
parent 28a1c254d9
commit 2c2a24c31b
3 changed files with 3 additions and 83 deletions

View File

@@ -395,7 +395,6 @@ async function initializeExpressSync() {
router.del ('/api/v1/mail/:domain/lists/:name', token, authorizeMailManager, routes.mail.delList);
// support routes
router.post('/api/v1/support/ticket', json, token, authorizeOwner, routes.support.createTicket);
router.get ('/api/v1/support/remote_support', token, authorizeOwner, routes.support.getRemoteSupport);
router.post('/api/v1/support/remote_support', json, token, authorizeOwner, routes.support.enableRemoteSupport);