Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 281 Bytes

landing_page.md

File metadata and controls

12 lines (10 loc) · 281 Bytes

Overriding The Landing Page

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')
  # ...