spec/dummy/config/routes.rb in ab_admin-0.2.3 vs spec/dummy/config/routes.rb in ab_admin-0.3.0

- old
+ new

@@ -1,14 +1,14 @@ Rails.application.routes.draw do - root :to => 'welcome#index' + root to: 'welcome#index' resources :products devise_for :users, ::AbAdmin::Devise.config namespace :admin do - root :to => 'dashboards#index' + root to: 'dashboards#index' end mount Ckeditor::Engine => '/ckeditor' end