hide cas ticket from web portal
[releng.git] / utils / test / testapi / opnfv_testapi / ui / root.py
1 from opnfv_testapi.common.config import CONF
2 from opnfv_testapi.resources import handlers
3
4
5 class RootHandler(handlers.GenericApiHandler):
6     def get_template_path(self):
7         return CONF.ui_static_path
8
9     def get(self):
10         self.render('testapi-ui/index.html')