Changed Meteor.Collection to Mongo.Collection

This commit is contained in:
Thaum
2015-03-18 06:18:27 +00:00
parent 6be823ad15
commit 06b0ad7eba
20 changed files with 84 additions and 80 deletions

View File

@@ -1,4 +1,4 @@
Notes = new Meteor.Collection("notes");
Notes = new Mongo.Collection("notes");
Schemas.Note = new SimpleSchema({
charId: {type: String, regEx: SimpleSchema.RegEx.Id},