ohif-viewer/Packages/ohif-study-list/client/collections/studies.js
2018-12-14 14:38:36 +01:00

10 lines
317 B
JavaScript

import { OHIF } from 'ohif-core';
// Define the Studies Collection. This is a client-side only Collection which stores the list of
// studies in the StudyList
const Studies = new Meteor.Collection(null);
Studies._debugName = 'Studies';
OHIF.studylist.collections = {};
OHIF.studylist.collections.Studies = Studies;