switch workspace routes and templates to Flask and Jinja

This commit is contained in:
dandds
2018-08-01 13:15:07 -04:00
committed by richard-dds
parent 0976aed778
commit 3a53fc122d
8 changed files with 86 additions and 35 deletions

View File

@@ -10,6 +10,7 @@ from atst.sessions import RedisSessions
from atst.database import db
from atst.assets import assets
from atst.routes import bp
from atst.routes.workspaces import bp as workspace_routes
ENV = os.getenv("TORNADO_ENV", "dev")
@@ -31,6 +32,7 @@ def make_app(config):
assets.init_app(app)
app.register_blueprint(bp)
app.register_blueprint(workspace_routes)
return app