class ActionController::Base

Public Instance Methods

after_sign_in_path_for(resource_or_scope) click to toggle source
# File lib/authentifyd/action_controller/base.rb, line 7
def after_sign_in_path_for(resource_or_scope)
  Authentifyd.default_after_sign_in_path || root_path
end
after_sign_out_path_for(resource_or_scope) click to toggle source
# File lib/authentifyd/action_controller/base.rb, line 3
def after_sign_out_path_for(resource_or_scope)
  params[:callback_url] || session[:referrer] || root_path
end