Files
DiceCloud/app/imports/api/properties/Slots.js
2019-11-13 11:54:27 +02:00

14 lines
198 B
JavaScript

import SimpleSchema from 'simpl-schema';
let SlotSchema = new SimpleSchema({
slotTags: {
type: Array,
defaultValue: [],
},
'slotTags.$': {
type: String,
},
});
export { SlotSchema };