feature/disable-auth #1

Merged
jackhadrill merged 7 commits from feature/disable-auth into main 2022-08-27 20:02:09 +00:00
Showing only changes of commit fecf8f1ab3 - Show all commits

View File

@ -19,6 +19,6 @@ def default(path):
if not state.is_running(username): if not state.is_running(username):
state.spawn(username) state.spawn(username)
response = make_response(f"Container spawned. Reloading `{path}`...", 201) response = make_response(f"Container spawned. Reloading{'' if path else ' ' + path}...", 201)
response.headers["Refresh"] = "5" response.headers["Refresh"] = "2"
return response return response