Vulcan/packages/custom/lib/settings.js

14 lines
381 B
JavaScript

// Custom Setting
var customSetting = {
propertyName: 'customSetting',
propertySchema: {
type: String,
optional: true,
autoform: {
group: 'customGroup', // assign custom group (fieldset) in Settings form
private: true // mark as private (not published to client)
}
}
}
Settings.addToSchema(customSetting);