2016-09-26 13:34:26 +02:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
|
|
2016-10-06 12:23:51 +02:00
|
|
|
Meteor.publish('studyImportStatus', () => OHIF.studylist.collections.StudyImportStatus.find());
|
2016-09-29 17:25:04 +02:00
|
|
|
|
2016-10-06 12:23:51 +02:00
|
|
|
Meteor.publish('servers', () => Servers.find());
|
2016-09-29 17:25:04 +02:00
|
|
|
|
2016-10-06 12:23:51 +02:00
|
|
|
Meteor.publish('currentServer', () => CurrentServer.find());
|