diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-04 15:35:36 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-04 15:35:36 +0100 |
commit | 2b0b7ff1b8b134e97c8827721a59cac21897932c (patch) | |
tree | 5483ce881b704eec7c23d2b83e71ac9c92dfaf2e | |
parent | 1bbcd71cd403da843e8a4a67926a4394b31a63fd (diff) |
Fix #385 - /web now loads a page
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 18c239c48..e46b27f1f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -136,7 +136,7 @@ Rails.application.routes.draw do end end - get '/web/*any', to: 'home#index', as: :web + get '/web/(*any)', to: 'home#index', as: :web get :about, to: 'about#index' get :terms, to: 'about#terms' |