feat: Implement user enrollment interaction to assign a random class role and add new role configurations.

This commit is contained in:
syntaxbullet
2025-12-18 20:09:19 +01:00
parent a97a24f72a
commit 528a66a7ef
5 changed files with 124 additions and 1 deletions

View File

@@ -25,6 +25,10 @@ const event: Event<Events.InteractionCreate> = {
await import("@/modules/admin/item_wizard").then(m => m.handleItemWizardInteraction(interaction));
return;
}
if (interaction.customId === "enrollment" && interaction.isButton()) {
await import("@/modules/user/enrollment.interaction").then(m => m.handleEnrollmentInteraction(interaction));
return;
}
}
if (interaction.isAutocomplete()) {