mirror of
https://github.com/strapi/strapi.git
synced 2025-09-24 16:04:54 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
![]() |
// This method is executed before the load of the plugin
|
||
|
const bootstrap = (plugin) => new Promise(resolve => {
|
||
|
// TODO add with saga
|
||
|
plugin.hasAdminUser = true;
|
||
|
|
||
|
return resolve(plugin);
|
||
|
});
|
||
|
|
||
|
export default bootstrap;
|