diff options
Diffstat (limited to 'pyload/webui/app/utils.py')
-rw-r--r-- | pyload/webui/app/utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyload/webui/app/utils.py b/pyload/webui/app/utils.py index 4a431493b..ac7fa84fb 100644 --- a/pyload/webui/app/utils.py +++ b/pyload/webui/app/utils.py @@ -84,7 +84,11 @@ def parse_userdata(session): def login_required(perm=None): + + def _dec(func): + + def _view(*args, **kwargs): s = request.environ.get('beaker.session') if s.get("name", None) and s.get("authenticated", False): @@ -116,6 +120,7 @@ def toDict(obj): class CherryPyWSGI(ServerAdapter): + def run(self, handler): from wsgiserver import CherryPyWSGIServer |