summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/resources/ui_handlers.py
blob: 4c14802c4f7977f13d64aa1f9b33ee413796cb5b (plain)
1
2
3
4
5
6
7
8
9
10
11
from opnfv_testapi.resources.handlers import GenericApiHandler
from opnfv_testapi.common import config


class UIHandler(GenericApiHandler):

    def get_template_path(self):
        return config.Config().static_path

    def get(self):
        self.render('testapi-ui/index.html')