mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 14:32:56 +00:00
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
admin: require('./admin'),
|
|
'authenticated-user': require('./authenticated-user'),
|
|
authentication: require('./authentication'),
|
|
permission: require('./permission'),
|
|
role: require('./role'),
|
|
user: require('./user'),
|
|
webhooks: require('./Webhooks'),
|
|
};
|