diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-13 03:24:41 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-13 03:24:41 +0100 |
commit | e25170f960bdc890e4f8a6b1373ab55192669629 (patch) | |
tree | 6a08f8020ede5457a276d99a6c146354eed4db60 /config/routes.rb | |
parent | 2939e9898b1e0e7da6db802a00e594be4c85499d (diff) |
Add extended about page stub
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/routes.rb b/config/routes.rb index c0262e933..42de503f0 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -143,9 +143,10 @@ Rails.application.routes.draw do get '/web/(*any)', to: 'home#index', as: :web - get :about, to: 'about#index' - get :terms, to: 'about#terms' - + get '/about', to: 'about#index' + get '/about/more', to: 'about#more' + get '/terms', to: 'about#terms' + root 'home#index' match '*unmatched_route', via: :all, to: 'application#raise_not_found' |