module DeviseSecurityExtension::Patches module PasswordsControllerCaptcha extend ActiveSupport::Concern included do define_method :create do if valid_captcha? params[:captcha] self.resource = resource_class.send_reset_password_instructions(params[resource_name]) if successfully_sent?(resource) respond_with({}, :location => new_session_path(resource_name)) else respond_with(resource) end else flash[:alert] = t('devise.invalid_captcha') if is_navigational_format? respond_with({}, :location => new_password_path(resource_name)) end end end end end