clarion/app/controllers/confirmations_controller.rb

15 lines
563 B
Ruby
Raw Normal View History

class ConfirmationsController < Devise::ConfirmationsController
def show
self.resource = resource_class.confirm_by_token(params[:confirmation_token])
yield resource if block_given?
if resource.errors.empty?
set_flash_message(:notice, :confirmed) if is_flashing_format?
sign_in(resource_name, resource)
2019-04-28 21:10:54 +03:00
respond_with_navigational(resource) { redirect_to after_confirmation_path_for(resource_name, resource) }
else
2019-04-28 21:10:54 +03:00
respond_with_navigational(resource.errors, status: :unprocessable_entity) { render :new }
end
end
end