Skip to content
Snippets Groups Projects
Commit bde9e316 authored by Xiao Gui's avatar Xiao Gui
Browse files

fix: typo

fix: redirect on signin
parent f9281217
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,13 @@ if HOST_PATHNAME:
logger.info(f"listening on path {HOST_PATHNAME}, also falls back to root")
_app = app
app = FastAPI()
# necessary as /${HOST_PATHNAME} would result in 404
@app.get(HOST_PATHNAME)
def redirect():
return RedirectResponse(f"{HOST_PATHNAME}/")
app.mount(HOST_PATHNAME, _app)
# fallback, also listen on root
......
......@@ -41,4 +41,4 @@ Feature: Exploring features
Scenario: User quitting checking out connectivity strength
Given User checked out connectivity strength
When User unselects the feature
Then The connection strength color mapped atlas disapepars, whilst the probabilistic map reappears.
Then The connection strength color mapped atlas disappears, whilst the probabilistic map reappears.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment