9 lines
174 B
Ruby
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
|