strapi-hook-patch-entreprise-edition v3.5.0-1
Strapi hook Patch Entreprise Edition
A Strapi startup hook that will patch your installation to unlock the Gold Entreprise Edition features.
At every Strapi startup, this hook will check if your installation is not patched yet and do its magic.
Compatible with Strapi v3.1.0+, tested and working on Strapi v3.5.0.
Unlocked Features
- Single Sign On (SSO)
- Create more than 3 roles on the admin panel
Screenshots




Install the patch
yarn add strapi-hook-patch-entreprise-editionSet the following configuration in your ./config/hook.js file.
module.exports = {
settings: {
'patch-entreprise-edition': {
enabled: true,
timeout: 0,
// revertPatch: true
}
}
}Then, simply start your Strapi server as usual.
yarn strapi developA message will tell you if the patch was successful.
You Strapi installation was succesfully patched! 🏴☠️🏴☠️You need to rebuild the Admin dashboard to reflect license changes.
yarn strapi build --cleanYour installation is now patched!
Uninstall the patch
Set the following configuration in your config/hook.js file.
module.exports = {
settings: {
'patch-entreprise-edition': {
enabled: true,
timeout: 0,
revertPatch: true
}
}
}Then, simply start your Strapi server as usual.
yarn strapi developA message will tell you if the unpatch was successful.
Your installation was succesfully unpatched! 👋👋You need to rebuild the Admin dashboard to reflect license changes.
yarn strapi build --cleanYour installation is now unpatched!