Vulcan/packages/telescope-blank/lib/settings.js
2015-03-28 18:38:20 +09:00

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);