summaryrefslogtreecommitdiffstats
path: root/module/web/pyload_app.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-31 13:11:58 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-31 13:11:58 +0200
commit53bc0477f9b0217c87676103361b1633e9b12f19 (patch)
treec6461ab1c292b39e49e1a5924b75761b588b25ba /module/web/pyload_app.py
parentseparate addon and plugin configs (diff)
downloadpyload-53bc0477f9b0217c87676103361b1633e9b12f19.tar.xz
added account page
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):