This commit is contained in:
Tarrgon
2026-06-02 09:40:52 -04:00
parent 53a658aa69
commit e6fb923531
2 changed files with 18 additions and 0 deletions
+4
View File
@@ -198,6 +198,10 @@ export class Database {
await Database.db.run('UPDATE settings SET tickets_channel_id = ? WHERE guild_id = ?', id, guildId);
}
static async setGuildAppealsLogsChannelId(guildId: string, id: string) {
await Database.db.run('UPDATE settings SET appeals_channel_id = ? WHERE guild_id = ?', id, guildId);
}
static async setGuildEventsLogsChannelId(guildId: string, id: string) {
await Database.db.run('UPDATE settings SET event_logs_channel_id = ? WHERE guild_id = ?', id, guildId);
}