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.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py
index afb97b361..843919b85 100644
--- a/module/web/pyload_app.py
+++ b/module/web/pyload_app.py
@@ -126,6 +126,16 @@ def logout():
s.delete()
return render_to_response("logout.html", proc=[pre_processor])
+@route("/queue")
+@login_required()
+def index(api):
+ return render_to_response("queue.html", proc=[pre_processor])
+
+@route("/settings")
+@login_required()
+def index(api):
+ return render_to_response("settings.html", proc=[pre_processor])
+
@route("/")
@login_required()
def index(api):