mirror of
https://github.com/strapi/strapi.git
synced 2025-07-26 02:20:32 +00:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
// eslint-disable-next-line node/no-extraneous-require
|
|
const { features } = require('@strapi/strapi/lib/utils/ee');
|
|
const executeCEBootstrap = require('../../server/bootstrap');
|
|
const { getService } = require('../../server/utils');
|
|
const actions = require('./config/admin-actions');
|
|
const { persistTablesWithPrefix } = require('./utils/persisted-tables');
|
|
|
|
module.exports = async () => {
|
|
const { actionProvider } = getService('permission');
|
|
|
|
if (features.isEnabled('sso')) {
|
|
await actionProvider.registerMany(actions.sso);
|
|
}
|
|
|
|
if (features.isEnabled('audit-logs')) {
|
|
await persistTablesWithPrefix('strapi_audit_logs');
|
|
|
|
await actionProvider.registerMany(actions.auditLogs);
|
|
}
|
|
|
|
if (features.isEnabled('review-workflows')) {
|
|
await persistTablesWithPrefix('strapi_workflows');
|
|
|
|
const { bootstrap: rwBootstrap } = getService('review-workflows');
|
|
|
|
await rwBootstrap();
|
|
await actionProvider.registerMany(actions.reviewWorkflows);
|
|
|
|
// Decorate the entity service with review workflow logic
|
|
const { decorator } = getService('review-workflows-decorator');
|
|
strapi.entityService.decorate(decorator);
|
|
}
|
|
|
|
await getService('seat-enforcement').seatEnforcementWorkflow();
|
|
|
|
await executeCEBootstrap();
|
|
};
|