2017-02-22 12:00:00 +01:00
|
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
|
|
|
|
2017-10-11 13:03:35 +02:00
|
|
|
const note = 'OHIF.studylist.retrieveStudyMetadata is deprecated.';
|
|
|
|
|
const instructions = 'Please use OHIF.studies.retrieveStudyMetadata instead.';
|
2017-02-22 12:00:00 +01:00
|
|
|
|
|
|
|
|
/**
|
2017-10-11 13:03:35 +02:00
|
|
|
* @deprecated Please use OHIF.studies.retrieveStudyMetadata instead
|
2017-02-22 12:00:00 +01:00
|
|
|
*/
|
2017-10-11 13:03:35 +02:00
|
|
|
OHIF.studylist.retrieveStudyMetadata = function() {
|
|
|
|
|
OHIF.log.warn(`${note}\n${instructions}`);
|
|
|
|
|
OHIF.studies.retrieveStudyMetadata.apply(this, arguments);
|
2017-02-22 12:00:00 +01:00
|
|
|
};
|