Added count, added some new playing lines, fixed security issue with hackban
This commit is contained in:
parent
e9f4109f43
commit
c65a8115aa
6 changed files with 94 additions and 4 deletions
|
@ -22,5 +22,11 @@ const tweetSchema = new mongoose.Schema({
|
|||
});
|
||||
const TweetCollection = mongoose.model("TweetCollection", tweetSchema);
|
||||
|
||||
const globalSchema = new mongoose.Schema({
|
||||
cmdCounts: Map
|
||||
});
|
||||
const Global = mongoose.model("Global", globalSchema);
|
||||
|
||||
exports.guilds = Guild;
|
||||
exports.tweets = TweetCollection;
|
||||
exports.tweets = TweetCollection;
|
||||
exports.global = Global;
|
Loading…
Add table
Add a link
Reference in a new issue