Vulcan/packages/custom/lib/settings.js
2015-05-07 18:00:23 +09:00

15 lines
411 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);