feat: add kick, mute, and unmute commands

This commit is contained in:
Ahmad 2025-04-16 22:10:47 -04:00
parent 49d274f2be
commit 20af09b279
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
8 changed files with 395 additions and 7 deletions

View file

@ -133,6 +133,7 @@ export async function updateMember({
discordUsername,
currentlyInServer,
currentlyBanned,
currentlyMuted,
}: schema.memberTableTypes): Promise<void> {
try {
await ensureDbInitialized();
@ -147,6 +148,7 @@ export async function updateMember({
discordUsername,
currentlyInServer,
currentlyBanned,
currentlyMuted,
})
.where(eq(schema.memberTable.discordId, discordId));