engine/config/routes.rb

10 lines
199 B
Ruby

Locomotive::Application.routes.draw do |map|
constraints(Locomotive::Routing::DefaultConstraint) do
root :to => 'home#show'
devise_for :accounts
end
match '/' => 'pages#show'
end