mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 21:09:39 +00:00
11 lines
287 B
JavaScript
11 lines
287 B
JavaScript
'use strict';
|
|
|
|
const executeCEBootstrap = require('../../../config/functions/bootstrap');
|
|
const { actions: eeActions } = require('../admin-actions');
|
|
|
|
module.exports = async () => {
|
|
strapi.admin.services.permission.actionProvider.register(eeActions);
|
|
|
|
await executeCEBootstrap();
|
|
};
|