Icon ui method

This commit is contained in:
Andrew Croce
2018-07-17 10:41:50 -04:00
parent 1a84e0e99c
commit 41259685b0
4 changed files with 9 additions and 1 deletions

View File

@@ -15,10 +15,10 @@ from atst.handlers.dev import Dev
from atst.home import home
from atst.api_client import ApiClient
from atst.sessions import RedisSessions
from atst.ui import UI
ENV = os.getenv("TORNADO_ENV", "dev")
def make_app(config, deps, **kwargs):
routes = [
@@ -104,6 +104,7 @@ def make_app(config, deps, **kwargs):
)
app.config = config
app.sessions = deps["sessions"]
app.ui = UI
return app