mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 09:00:19 +00:00
9 lines
154 B
JavaScript
9 lines
154 B
JavaScript
module.exports = {
|
|
user: {
|
|
actions: {
|
|
create: 'User.create', // Use the User plugin's controller.
|
|
update: 'User.update',
|
|
},
|
|
},
|
|
};
|