mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 11:30:21 +00:00
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
// eslint-disable-next-line node/no-extraneous-require
|
|
const { features } = require('@strapi/strapi/dist/utils/ee').default;
|
|
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 (args) => {
|
|
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('review-workflows-weekly-metrics').registerCron();
|
|
}
|
|
|
|
await getService('seat-enforcement').seatEnforcementWorkflow();
|
|
|
|
await executeCEBootstrap(args);
|
|
};
|