ohif-viewer/Packages/worklist/server/publications.js

12 lines
229 B
JavaScript

Meteor.publish('studyImportStatus', () => {
return StudyImportStatus.find();
});
Meteor.publish('servers', () => {
return Servers.find();
});
Meteor.publish('currentServer', () => {
return CurrentServer.find();
});