mirror of
https://github.com/strapi/strapi.git
synced 2025-12-07 20:44:55 +00:00
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
|
|
const getInitialValues = role => {
|
||
|
|
return {
|
||
|
|
name: role.name,
|
||
|
|
description: role.description,
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
export default getInitialValues;
|