simple cases when the preexisting targeted account does not have instructeur or profile profile

This commit is contained in:
simon lehericey 2021-10-04 14:00:32 +02:00
parent c56199e8f7
commit 9a6a53349f
2 changed files with 64 additions and 17 deletions

View file

@ -2,14 +2,25 @@ module Manager
class UsersController < Manager::ApplicationController
def update
user = User.find(params[:id])
new_email = params[:user][:email]
user.skip_reconfirmation!
user.update(email: new_email)
if (user.valid?)
flash[:notice] = "L'email a été modifié en « #{new_email} » sans notification ni validation par email."
preexisting_user = User.find_by(email: targeted_email)
if preexisting_user.nil?
user.skip_reconfirmation!
user.update(email: targeted_email)
if (user.valid?)
flash[:notice] = "L'email a été modifié en « #{targeted_email} » sans notification ni validation par email."
else
flash[:error] = user.errors.full_messages.to_sentence
end
else
flash[:error] = "« #{new_email} » nest pas une adresse valide."
user.dossiers.update_all(user_id: preexisting_user.id)
user.instructeur&.update(user: preexisting_user)
user.expert&.update(user: preexisting_user)
end
redirect_to edit_manager_user_path(user)
end
@ -72,5 +83,11 @@ module Manager
end
redirect_to emails_manager_user_path(@user)
end
private
def targeted_email
params[:user][:email]
end
end
end