10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
OHIF.studylist.getSelectedStudies = () => {
|
|
return StudyListSelectedStudies.find({}, {
|
|
sort: {
|
|
studyDate: 1
|
|
}
|
|
}).fetch() || [];
|
|
};
|