mirror of
https://github.com/strapi/strapi.git
synced 2025-12-06 03:52:38 +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;
|