Added blacklist checks and rate limit logging

Needs testing
This commit is contained in:
Stefan Zermatten
2018-03-12 09:22:04 +02:00
parent e27211b24d
commit 164ba78c81
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
Blacklist = new Mongo.Collection("blacklist");
Schemas.Blacklist = new SimpleSchema({
userId: {
type: String,
},
});
Blacklist.attachSchema(Schemas.Blacklist);