Vulcan/packages/telescope-blank/lib/both.js
2014-12-08 10:28:56 +09:00

14 lines
No EOL
479 B
JavaScript

var customProperty = {
propertyName: 'customProperty',
propertySchema: {
type: String, // property type
label: 'customLabel', // key string used for internationalization
optional: true, // make this property optional
autoform: {
editable: true, // make this property editable by users
group: 'xyz', // assign a custom form group
type: "bootstrap-datetimepicker" // assign a custom input type
}
}
}
addToPostSchema.push(customProperty);