You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
389 B

const Template = require('../__template')
const coll = new Template('config', 'Configuration', 'mdi-bookmark', 'Configuration du nubium artifex')
coll.customId = true
coll.schema = {
type: 'object',
properties: {
_id: { type: 'string' },
name: { type: 'string' },
value: {}
}
}
module.exports = function (pCtx) {
require('./config.form')(pCtx, coll)
return coll
}