Add extended about page stub

This commit is contained in:
Eugen Rochko 2017-01-13 03:24:41 +01:00
parent 2939e9898b
commit e25170f960
10 changed files with 44 additions and 15 deletions

View file

@ -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'

View file

@ -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