Vulcan/packages/custom/lib/settings.js
2015-04-25 13:11:28 +09:00

15 lines
410 B
JavaScript

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