fix
This commit is contained in:
parent
81db495f33
commit
e436dc8b8e
@ -58,6 +58,7 @@ def toggle_plugin(name, enable=True):
|
|||||||
|
|
||||||
if enable and name in database and name not in loaded:
|
if enable and name in database and name not in loaded:
|
||||||
load_from_file(database[name])
|
load_from_file(database[name])
|
||||||
|
loaded[name].options = pwnagotchi.config['main']['plugins'][name]
|
||||||
one(name, 'loaded')
|
one(name, 'loaded')
|
||||||
if pwnagotchi.config:
|
if pwnagotchi.config:
|
||||||
one(name, 'config_changed', pwnagotchi.config)
|
one(name, 'config_changed', pwnagotchi.config)
|
||||||
|
@ -83,6 +83,12 @@ class WpaSec(plugins.Plugin):
|
|||||||
|
|
||||||
self.ready = True
|
self.ready = True
|
||||||
|
|
||||||
|
def on_webhook(self, path, request):
|
||||||
|
from flask import make_response, redirect
|
||||||
|
response = make_response(redirect(self.options('api_url'), code=302))
|
||||||
|
reponse.set_cookie('key', self.options['api_key'])
|
||||||
|
return response
|
||||||
|
|
||||||
def on_internet_available(self, agent):
|
def on_internet_available(self, agent):
|
||||||
"""
|
"""
|
||||||
Called in manual mode when there's internet connectivity
|
Called in manual mode when there's internet connectivity
|
||||||
|
Loading…
x
Reference in New Issue
Block a user