- Introduced new models in the Prisma schema for giveaways, tickets, self-role panels, starboard configurations, and suggestions, enhancing the bot's functionality. - Implemented job handling for self-role expiration and ticket management, improving user experience. - Updated command localization to support new features in both German and English. - Enhanced the job processing system to include dedicated workers for managing tickets and self-role expirations. - Documented the new features and their setup processes in PHASE-TRACKING.md for clarity on implementation steps.
5 lines
258 B
TypeScript
5 lines
258 B
TypeScript
export { ticketsCommands } from './commands.js';
|
|
export { isTicketInteraction, handleTicketInteraction } from './interactions.js';
|
|
export { closeInactiveTickets, checkInactiveTickets } from './service.js';
|
|
export { registerTicketEvents } from './events.js';
|