ohif-viewer/Packages/ohif-study-list/server/publications.js
2016-11-15 08:24:01 +01:00

15 lines
338 B
JavaScript

import { Meteor } from 'meteor/meteor';
import { OHIF } from 'meteor/ohif:core';
Meteor.publish('studyImportStatus', () => {
return OHIF.studylist.collections.StudyImportStatus.find();
});
Meteor.publish('servers', () => {
return Servers.find();
});
Meteor.publish('currentServer', () => {
return CurrentServer.find();
});