- Implement ProtocolStore interface to allow persisting hanging protocols using different strategies - Implement and set default strategy to persist hanging protocols in the MongoDB collection “HangingProtocols” in the application server
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
Meteor.publish('hangingprotocols', function() {
|
|
// TODO: filter by availableTo user
|
|
return HangingProtocols.find();
|
|
});
|