Properly redirect to teams.private instead of teams.new (#1016)

* Properly redirect to `teams.private` instead of `teams.new`
This commit is contained in:
Kevin Chung
2019-06-04 10:57:17 -04:00
committed by GitHub
parent f4819fa10e
commit 41bc92dab9

View File

@@ -242,7 +242,7 @@ def register():
db.session.close() db.session.close()
if is_teams_mode(): if is_teams_mode():
return redirect(url_for("teams.new")) return redirect(url_for("teams.private"))
return redirect(url_for("challenges.listing")) return redirect(url_for("challenges.listing"))
else: else: