Skip to content
Snippets Groups Projects
Commit ea1996ed authored by Martin Mareš's avatar Martin Mareš
Browse files

Základní účastnická stránka bydlí na /user/, nikoliv /user

Tohle způsobovalo internal server error, protože na /user nebyla
v init_request() vynucena autentikace. Proto na /user občas přišel
nepřihlášený uživatel, což rozbilo autoregistraci do testovací soutěže.
parent 3cb7c76d
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ from mo.web import app
import mo.web.util
@app.route('/user')
@app.route('/user/')
def user_index():
pcrs = load_pcrs()
if getattr(config, 'AUTO_REGISTER_TEST', False) and not any(round.category == 'T' for pion, contest, round in pcrs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment