Merge branch 'master' into basic-auth

This commit is contained in:
richard-dds
2018-06-14 13:14:30 -04:00
committed by GitHub
3 changed files with 29 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ def make_app(config):
name="login",
),
url(r"/home", MainHandler, {"page": "home"}, name="home"),
url( r"/workspaces/blank", MainHandler, {'page': 'workspaces_blank'}, name='workspaces_blank' ),
url(
r"/workspaces",
Workspace,
@@ -55,6 +56,7 @@ def make_app(config):
app = tornado.web.Application(
routes,
login_url="/",
template_path = home.child('templates'),
static_path = home.child('static'),
cookie_secret=config["default"]["COOKIE_SECRET"],