about summary refs log tree commit diff
path: root/config
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-13 03:24:41 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-13 03:24:41 +0100
commite25170f960bdc890e4f8a6b1373ab55192669629 (patch)
tree6a08f8020ede5457a276d99a6c146354eed4db60 /config
parent2939e9898b1e0e7da6db802a00e594be4c85499d (diff)
Add extended about page stub
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb7
-rw-r--r--config/settings.yml2
2 files changed, 5 insertions, 4 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'
diff --git a/config/settings.yml b/config/settings.yml
index 2e309e46e..a78bd067d 100644
--- a/config/settings.yml
+++ b/config/settings.yml
@@ -1,6 +1,7 @@
 # config/app.yml for rails-settings-cached
 defaults: &defaults
   site_description: ''
+  site_extended_description: ''
   site_contact_username: ''
   site_contact_email: ''
   notification_emails:
@@ -12,7 +13,6 @@ defaults: &defaults
   interactions:
     must_be_follower: false
     must_be_following: false
-
 development:
   <<: *defaults