Remove a return

This commit is contained in:
gregoirenovel 2018-10-10 10:32:59 +02:00
parent 89dec3d363
commit 46d02d3e2b

View file

@ -4,10 +4,10 @@ class Users::Dossiers::InvitesController < UsersController
email = params[:email] email = params[:email]
if email.present? && User.find_by(email: email).nil? if email.present? && User.find_by(email: email).nil?
return redirect_to new_user_registration_path(user: { email: email }) redirect_to new_user_registration_path(user: { email: email })
else
super
end end
super
end end
def show def show