Alexandre BODIN 9fdb650c6c
Fix rerouting of destroy route in user-perm (#5581)
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-03-26 13:55:52 +01:00

11 lines
220 B
JavaScript

module.exports = {
user: {
actions: {
create: 'User.create', // Use the User plugin's controller.
update: 'User.update',
delete: 'User.destroy',
deleteall: 'User.destroyAll',
},
},
};