- Removed AssociatedStudies Collection - Measurement API is generated from configuration files - Data exchange methods are defined in configuration
17 lines
742 B
JavaScript
17 lines
742 B
JavaScript
import { Mongo } from 'meteor/mongo';
|
|
import { Servers as ServerSchema } from 'meteor/ohif:study-list/both/schema/servers.js';
|
|
|
|
StudyImportStatus = new Mongo.Collection('studyImportStatus');
|
|
StudyImportStatus._debugName = 'StudyImportStatus';
|
|
|
|
// Servers describe the DICOM servers configurations
|
|
Servers = new Mongo.Collection('servers');
|
|
// TODO: Make the Schema match what we are currently sticking into the Collection
|
|
//Servers.attachSchema(ServerSchema);
|
|
Servers._debugName = 'Servers';
|
|
|
|
// CurrentServer is a single document collection to describe which of the Servers is being used
|
|
CurrentServer = new Mongo.Collection('currentServer');
|
|
CurrentServer._debugName = 'CurrentServer';
|
|
|
|
export { StudyImportStatus, Servers, CurrentServer }; |