Added ability to disable tags for a server, added way to remove warnings

This commit is contained in:
TheEssem 2020-09-03 14:26:39 -05:00
parent 8b346240e9
commit e0d7ea7a57
5 changed files with 52 additions and 24 deletions

View file

@ -6,7 +6,8 @@ const guildSchema = new mongoose.Schema({
tags: Map,
prefix: String,
warns: Map,
disabledChannels: [String]
disabledChannels: [String],
tagsDisabled: Boolean
});
const Guild = mongoose.model("Guild", guildSchema);