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

10 lines
228 B
JavaScript

import { OHIF } from 'ohif-core';
OHIF.studylist.getSelectedStudies = () => {
return OHIF.studylist.collections.Studies.find({ selected: true }, {
sort: {
studyDate: 1
}
}).fetch() || [];
};