ohif-viewer/Packages/ohif-study-list/server/publications.js

9 lines
290 B
JavaScript
Raw Normal View History

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