12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
Meteor.publish('studyImportStatus', () => {
|
|
return StudyImportStatus.find();
|
|
});
|
|
|
|
Meteor.publish('servers', () => {
|
|
return Servers.find();
|
|
});
|
|
|
|
Meteor.publish('currentServer', () => {
|
|
return CurrentServer.find();
|
|
});
|