demarches-normaliennes/app/controllers/manager/users_controller.rb

11 lines
333 B
Ruby
Raw Normal View History

2018-05-31 15:18:06 +02:00
module Manager
class UsersController < Manager::ApplicationController
def resend_confirmation_instructions
user = User.find(params[:id])
user.resend_confirmation_instructions
2018-09-19 15:05:26 +02:00
flash[:notice] = "L'email d'activation de votre compte a été renvoyé."
redirect_to manager_user_path(user)
end
2018-05-31 15:18:06 +02:00
end
end