osem-fcy/app/controllers/confirmations_controller.rb

13 lines
256 B
Ruby
Raw Normal View History

2014-11-30 20:06:12 +02:00
class ConfirmationsController < Devise::ConfirmationsController
protected
def after_confirmation_path_for(resource_name, resource)
if signed_in?
signed_in_root_path(resource)
else
sign_in resource
root_path
end
end
end