Files
DiceCloud/app/imports/api/properties/Features.js
2019-08-05 12:04:26 +02:00

18 lines
254 B
JavaScript

import SimpleSchema from 'simpl-schema';
let FeatureSchema = new SimpleSchema({
name: {
type: String,
},
description: {
type: String,
optional: true,
},
alwaysEnabled: {
type: Boolean,
defaultValue: true
},
});
export { FeatureSchema }