engine/config/routes.rb

9 lines
174 B
Ruby

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