mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 20:10:21 +00:00
20 lines
332 B
JavaScript
20 lines
332 B
JavaScript
module.exports = {
|
|
administrator: {
|
|
actions: {
|
|
create: 'Admin.create',
|
|
update: 'Admin.update',
|
|
},
|
|
attributes: {
|
|
username: {
|
|
className: 'col-md-6',
|
|
},
|
|
email: {
|
|
className: 'col-md-6',
|
|
},
|
|
resetPasswordToken: {
|
|
className: 'd-none',
|
|
},
|
|
},
|
|
},
|
|
};
|