Skip to content

Commit

Permalink
join page now redirects to home
Browse files Browse the repository at this point in the history
  • Loading branch information
artnez committed Mar 22, 2012
1 parent ffc5581 commit 77637f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/faceoff/modules/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ def join():
form = JoinForm(request.form)
if request.method == 'POST' and form.validate():
# create user
return redirect(url_for('dashboard'))
return redirect(url_for('.home'))
return dict(join_form=form)

0 comments on commit 77637f7

Please sign in to comment.