当管理员登录时,它会自动重定向到主页(即不是管理员仪表板)。我不确定它为什么这样做或如何更改它......
路线.rb
ActiveAdmin.routes(self)
devise_for :admin_user, ActiveAdmin::Devise.config
get "guidelines/topic"
get "guidelines/topichospital"
get "guidelines/topicspecialty"
get "guidelines/favourite"
get "profiles/show"
get "guidelines/show"
root :to => 'guidelines#index'
我的 application_controller.rb 已更改为在用户登录后重定向(但不应该是管理员登录) - 这是问题吗?
include PublicActivity::StoreController
protect_from_forgery
def after_sign_in_path_for(resource)
favourites_path
end
hide_action :current_user