mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
14 lines
No EOL
384 B
JavaScript
14 lines
No EOL
384 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)
|
|
}
|
|
}
|
|
}
|
|
addToSettingsSchema.push(customSetting); |