[deploy] add ticket sla, pipeline, automations, kb
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 36s

This commit is contained in:
Pascal Prießnitz
2025-12-03 13:24:25 +01:00
parent ecb348efd0
commit 5bf42f4610
12 changed files with 561 additions and 123 deletions

View File

@@ -12,6 +12,8 @@ import { StatuspageService } from '../services/statuspageService';
import { BirthdayService } from '../services/birthdayService';
import { ReactionRoleService } from '../services/reactionRoleService';
import { EventService } from '../services/eventService';
import { TicketAutomationService } from '../services/ticketAutomationService';
import { KnowledgeBaseService } from '../services/knowledgeBaseService';
export const context = {
client: null as Client | null,
@@ -27,7 +29,9 @@ export const context = {
statuspage: new StatuspageService(),
birthdays: new BirthdayService(),
reactionRoles: new ReactionRoleService(),
events: new EventService()
events: new EventService(),
ticketAutomation: new TicketAutomationService(),
knowledgeBase: new KnowledgeBaseService()
};
context.modules.setHooks({