Commit bd25775f authored by Grandschtroumpf's avatar Grandschtroumpf

Add settings for plugin engine

parent 8fa4b049
This diff is collapsed.
......@@ -8,11 +8,16 @@ const requiredModules = [ // services + layout views + system views
'mainPanel', 'hiddenPanel', 'sidePanel', 'menuicons', 'fileExplorers',
'terminal', 'settings', 'pluginManager']
const settings = {
permissionHandler: new PermissionHandler(),
autoActivate: false,
natives: ['vyper'] // Force iframe plugin to be seen as native
}
export class RemixAppManager extends PluginEngine {
constructor (plugins) {
super(plugins)
this.permissionHandler = new PermissionHandler()
super(plugins, settings)
this.event = new EventEmitter()
this.registered = {}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment