21 lines
292 B
JavaScript
21 lines
292 B
JavaScript
|
|
module.exports = {
|
||
|
|
extend: 'apostrophe-widgets',
|
||
|
|
label: 'Test',
|
||
|
|
addFields: [
|
||
|
|
{
|
||
|
|
type: 'array',
|
||
|
|
name: 'columnns',
|
||
|
|
label: 'Columns',
|
||
|
|
required: true,
|
||
|
|
schema: [
|
||
|
|
{
|
||
|
|
name: "twelfths",
|
||
|
|
type: "integer",
|
||
|
|
label: "Twelfths",
|
||
|
|
required: true
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
]
|
||
|
|
};
|