ohif-viewer/Packages/ohif-user/client/lib/schema.js
2017-04-12 19:49:15 -03:00

15 lines
353 B
JavaScript

import { OHIF } from 'meteor/ohif:core';
import { ReactiveVar } from 'meteor/reactive-var';
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
OHIF.user.schema = new ReactiveVar(new SimpleSchema({
username: {
type: String,
label: 'Username'
},
password: {
type: String,
label: 'Password'
}
}));