これは私のroutes.rbです
Devel::Application.routes.draw do
authenticated :user do
root :to => 'home#index', as: :authenticated_user
end
root :to => 'welcome#index'
devise_for :users, :controllers => {:registrations => "registrations"}
resources :users
end
ユーザー テーブルには列があります:admin => true/false
。root :to
フラグが true の場合、別のコントローラーを確認するにはどうすればよいですか。
私が知っている唯一のことは、ビューでそれを処理できることif current_user.admin?
です。
提案やアイデアはありますか?
宜しくお願いします。