ohif-viewer/Packages/hangingprotocols/both/collections.js

11 lines
197 B
JavaScript

HangingProtocols = new Meteor.Collection('hangingprotocols');
HangingProtocols.allow({
insert: function() {
return true;
},
update: function() {
return true;
}
});