15 lines
338 B
JavaScript
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();
|
|
});
|