Files
DiceCloud/app/imports/api/properties/Features.js

22 lines
314 B
JavaScript

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