- Removed AssociatedStudies Collection - Measurement API is generated from configuration files - Data exchange methods are defined in configuration
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
HangingProtocols = new Meteor.Collection('hangingprotocols');
|
|
HangingProtocols._debugName = 'HangingProtocols';
|
|
|
|
HangingProtocols.allow({
|
|
insert: function() {
|
|
return true;
|
|
},
|
|
update: function() {
|
|
return true;
|
|
}
|
|
});
|