Open
Description
I added in my datagrid configuration the following lines to disable some actions added automatically by ORO when using the User class
datagrids.yml
....
action_configuration:
enableUser: false
resetPassword: false
disableUser: false
but it's not working.
I finally have find a solution adding the following lines in actions.yml to disable some actions written in oro/platform/src/Oro/Bundle/UserBundle/Resources/config/oro/actions.yml
operations:
reset_password:
exclude_datagrids:
- my_datagrid_name
user_enable:
exclude_datagrids:
- my_datagrid_name
user_disable:
exclude_datagrids:
- my_datagrid_name