blob: 576cbddcf78ca07317fe972c6a770591c09a2137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from opnfv_testapi.common import check
from opnfv_testapi.common.config import CONF
from opnfv_testapi.resources import handlers
class RootHandler(handlers.GenericApiHandler):
def get_template_path(self):
return CONF.ui_static_path
@check.login
def get(self):
self.render('testapi-ui/index.html')
|