Overriding The Landing Page

June 3, 2016 ยท View on GitHub

If you want to ignore the default dashboard and make one of your views the landing page you can add a redirect route in your Fae namespace.

config/routes.rb

# ...
namespace :admin do
  get '/', to: redirect('/admin/people')
  # ...