aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui/handlers/index.py
diff options
context:
space:
mode:
Diffstat (limited to 'fg21sim/webui/handlers/index.py')
-rw-r--r--fg21sim/webui/handlers/index.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/fg21sim/webui/handlers/index.py b/fg21sim/webui/handlers/index.py
index e95c310..b351619 100644
--- a/fg21sim/webui/handlers/index.py
+++ b/fg21sim/webui/handlers/index.py
@@ -2,11 +2,9 @@
# MIT license
"""
-Login handler
+Index page handler
"""
-import tornado.web
-
from .base import BaseRequestHandler
@@ -14,6 +12,5 @@ class IndexHandler(BaseRequestHandler):
"""
Index page handler of the Web UI.
"""
- @tornado.web.authenticated
def get(self):
self.render("index.html")