mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 14:32:56 +00:00
16 lines
397 B
JavaScript
16 lines
397 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
functions: {
|
|
bootstrap: require('./functions/bootstrap'),
|
|
register: require('./functions/register'),
|
|
},
|
|
policies: {
|
|
hasPermissions: require('./policies/hasPermissions'),
|
|
isAuthenticatedAdmin: require('./policies/isAuthenticatedAdmin'),
|
|
},
|
|
routes: require('./routes').routes,
|
|
layout: require('./layout'),
|
|
...require('./settings'),
|
|
};
|