18 lines
650 B
JavaScript
18 lines
650 B
JavaScript
import { Mongo } from 'meteor/mongo';
|
|
import { OHIF } from 'meteor/ohif:core';
|
|
// import { Servers as ServerSchema } from 'meteor/ohif:servers/both/schema/servers.js';
|
|
|
|
let collectionName = 'servers';
|
|
if (Meteor.settings && Meteor.settings.public && Meteor.settings.public.clientOnly === true) {
|
|
collectionName = null;
|
|
}
|
|
|
|
// Servers describe the DICOM servers configurations
|
|
const Servers = new Mongo.Collection(collectionName);
|
|
// TODO: Make the Schema match what we are currently sticking into the Collection
|
|
//Servers.attachSchema(ServerSchema);
|
|
Servers._debugName = 'Servers';
|
|
OHIF.servers.collections.servers = Servers;
|
|
|
|
export { Servers };
|