Basic housekeeping, as well as very basic work on per-channel !toke commands

This commit is contained in:
rainbow napkin 2024-12-15 07:25:38 -05:00
parent dc01b8a15a
commit 575244ac53
22 changed files with 139 additions and 35 deletions

View file

@ -72,7 +72,11 @@ const channelSchema = new mongoose.Schema({
enum: permissionModel.rankEnum
}
}],
//Thankfully we don't have to keep track of alts, ips, or deleted users so this should be a little easier :P
tokeCommands: [{
type: mongoose.SchemaTypes.String,
required: true
}],
//Thankfully we don't have to keep track of alts, ips, or deleted users so this should be a lot easier than site-wide bans :P
banList: [channelBanSchema]
});