diff options
author | 2013-03-31 13:11:58 +0200 | |
---|---|---|
committer | 2013-03-31 13:11:58 +0200 | |
commit | 53bc0477f9b0217c87676103361b1633e9b12f19 (patch) | |
tree | c6461ab1c292b39e49e1a5924b75761b588b25ba /module/web/pyload_app.py | |
parent | separate addon and plugin configs (diff) | |
download | pyload-53bc0477f9b0217c87676103361b1633e9b12f19.tar.xz |
added account page
Diffstat (limited to 'module/web/pyload_app.py')
-rw-r--r-- | module/web/pyload_app.py | 7 |
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): |