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,5 +1,5 @@
//set up the collection for containers
Containers = new Meteor.Collection("containers");
Containers = new Mongo.Collection("containers");
Schemas.Container = new SimpleSchema({
name: { type: String, trim: false },