]> git.ipfire.org Git - ipfire.org.git/blob - src/web/people.py
users: Move account activation handler into the main vhost
[ipfire.org.git] / src / web / people.py
1 #!/usr/bin/python
2
3 import tornado.web
4
5 from . import base
6 from . import ui_modules
7
8 class IndexHandler(base.BaseHandler):
9 @tornado.web.authenticated
10 def get(self):
11 self.render("people/index.html")