11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
HangingProtocols = new Meteor.Collection('hangingprotocols');
|
|
|
|
HangingProtocols.allow({
|
|
insert: function() {
|
|
return true;
|
|
},
|
|
update: function() {
|
|
return true;
|
|
}
|
|
});
|