jmarchel bdd410672d Adding dockerfile
Change-Id: Iaa70ed769c7d693ff5172f4fd3204677e4834a8a
2024-02-26 21:50:27 +02:00

31 lines
757 B
JavaScript

module.exports = {
fields: {
add: {
firstname: {
type: 'string',
label: 'First Name'
},
lastname: {
type: 'string',
label: 'Last Name'
},
organization: {
type: 'string',
label: 'Organization',
required: true,
group: 'basics'
},
uuid: {
type: 'string',
label: 'UUID',
required: true
},
},
group: {
basics: {
label: 'Basics',
fields: ['firstname', 'lastname','organization', 'uuid']
}
}
}
};