summaryrefslogtreecommitdiff
path: root/config/routes.rb
blob: b3e24b99436045e57be83fa9d1888b38119b474b (plain)
1
2
3
4
5
6
7
8
9
10
LeapWeb::Application.routes.draw do
  #
  # Please do not use root_path or root_url. Use home_path and home_url instead,
  # so that the path will be correctly prefixed with the locale.
  #
  root :to => "home#index"
  get '(:locale)' => 'home#index', :locale => MATCH_LOCALE, :as => 'home'

  get '/provider.json' => 'static_config#provider'
end