diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-09 08:47:25 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-09 14:47:25 +0200 |
commit | e5282e4ec0e9dab62dde9481284b0cfd30690fb9 (patch) | |
tree | 9af1aadcf9dc34338c828edb3ed9a9aa265b05e6 /config | |
parent | 53eb31f124b8cb366f45ac0aec36e346115e334f (diff) |
Clean up about page (#1282)
* Add InstancePresenter to expose site details * Clean up about controller, use instance presenter
Diffstat (limited to 'config')
-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 66b0ed830..b0a13aa78 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -188,7 +188,7 @@ Rails.application.routes.draw do get '/web/(*any)', to: 'home#index', as: :web - get '/about', to: 'about#index' + get '/about', to: 'about#show' get '/about/more', to: 'about#more' get '/terms', to: 'about#terms' |