summaryrefslogtreecommitdiffstats
path: root/module/web/pyload_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/pyload_app.py')
-rw-r--r--module/web/pyload_app.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py
index 45564ed08..483a47f07 100644
--- a/module/web/pyload_app.py
+++ b/module/web/pyload_app.py
@@ -154,10 +154,15 @@ def index(api):
return render_to_response("dashboard.html", proc=[pre_processor])
@route("/settings")
-@login_required()
+@login_required('Plugins')
def settings(api):
return render_to_response("settings.html", proc=[pre_processor])
+@route("/accounts")
+@login_required('Accounts')
+def accounts(api):
+ return render_to_response("accounts.html", proc=[pre_processor])
+
@route("/admin")
@login_required()
def admin(api):