アプリケーションのリダイレクトの設定に問題があります。ユーザーは自分のプロファイル (users/show) に移動し、管理者は管理ダッシュボードに移動する必要があります。これを設定するにはどうすればよいですか?
現在、次のエラーが発生しています。
NameError in ActiveAdmin::Devise::SessionsController#create
undefined local variable or method `admin' for #<ActiveAdmin::Devise::SessionsController:0x007febe12667e8>
アプリケーションコントローラー
def after_sign_in_path_for(resource_or_scope)
if admin
redirect_to admin_dashboard_path
else
@user
end
end
end