aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-04-15 16:44:46 +0200
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-04-15 16:44:46 +0200
commitf97df035c36c546afd665a1ec7da04cad35d869a (patch)
tree066f47b5b31323e7a88010c0f5a274c6bea6e524 /config
parent5451dd0e817294c5d53b4e6f6621982bff964d40 (diff)
feat(config): disable channel for xp
Diffstat (limited to 'config')
-rw-r--r--config/guild.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/guild.go b/config/guild.go
index df78406..5728759 100644
--- a/config/guild.go
+++ b/config/guild.go
@@ -7,8 +7,9 @@ import (
type GuildConfig struct {
gorm.Model
- GuildID string `gorm:"not null"`
- XpRoles []XpRole
+ GuildID string `gorm:"not null"`
+ XpRoles []XpRole
+ DisabledChannels string
}
type XpRole struct {