12 lines
370 B
JavaScript
12 lines
370 B
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
// Define the Studies Collection. This is a client-side only Collection which stores the list of
|
|
// studies in the StudyList
|
|
Meteor.startup(() => {
|
|
const Studies = new Meteor.Collection(null);
|
|
Studies._debugName = 'Studies';
|
|
|
|
OHIF.studylist.collections.Studies = Studies;
|
|
});
|