docs/meteor/collections/installs.js

20 lines
293 B
JavaScript

Installs = new Meteor.Collection('installs');
schemaInstalls = new SimpleSchema({
});
Installs.allow({
'update': function () {
return true;
},
'insert': function () {
return true;
},
'remove': function () {
return true;
}
});
Installs.attachSchema(schemaInstalls);