10 lines
224 B
JavaScript
Raw Normal View History

// 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;