bdd410672d
Change-Id: Iaa70ed769c7d693ff5172f4fd3204677e4834a8a
36 lines
733 B
JavaScript
36 lines
733 B
JavaScript
module.exports = {
|
|
options: {
|
|
subforms: {
|
|
displayname: {
|
|
fields: [ 'title' ],
|
|
reload: true
|
|
},
|
|
changePassword: {
|
|
fields: [ 'password' ]
|
|
},
|
|
fullname: {
|
|
label: 'Full Name',
|
|
fields: [ 'firstname', 'lastname' ],
|
|
preview: '{{ firstname }} {{lastname}}'
|
|
},
|
|
organization: {
|
|
label: 'Organization',
|
|
type: 'string',
|
|
fields: [ 'organization' ]
|
|
},
|
|
uuid: {
|
|
label: 'UUID',
|
|
type: 'string',
|
|
fields: [ 'uuid' ]
|
|
}
|
|
},
|
|
|
|
groups: {
|
|
account: {
|
|
label: 'Account',
|
|
subforms: [ 'displayname', 'fullname', 'changePassword', 'organization', 'uuid' ]
|
|
}
|
|
}
|
|
}
|
|
};
|