Added ability to disable tags for a server, added way to remove warnings
This commit is contained in:
parent
8b346240e9
commit
e0d7ea7a57
5 changed files with 52 additions and 24 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue