ohif-viewer/Packages/ohif-servers/both/collections/currentServer.js

10 lines
364 B
JavaScript
Raw Normal View History

2017-06-16 21:36:34 +02:00
import { Mongo } from 'meteor/mongo';
import { OHIF } from 'meteor/ohif:core';
// CurrentServer is a single document collection to describe which of the Servers is being used
const CurrentServer = new Mongo.Collection('currentServer');
CurrentServer._debugName = 'CurrentServer';
OHIF.servers.collections.currentServer = CurrentServer;
export { CurrentServer };