From 87383e624855def55e13d238b2f20b79c418c1d9 Mon Sep 17 00:00:00 2001 From: elijah Date: Tue, 21 Jan 2014 13:54:45 -0800 Subject: added default pricing, privacy policy and tos pages. --- config/routes.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'config/routes.rb') diff --git a/config/routes.rb b/config/routes.rb index b3e24b9..f8f0c26 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,5 +6,13 @@ LeapWeb::Application.routes.draw do root :to => "home#index" get '(:locale)' => 'home#index', :locale => MATCH_LOCALE, :as => 'home' + scope "(:locale)", :locale => MATCH_LOCALE, :controller => 'pages', :action => 'show' do + get 'privacy-policy', :as => 'privacy_policy' + get 'terms-of-service', :as => 'terms_of_service' + get 'about', :as => 'about' + get 'contact', :as => 'contact' + get 'pricing', :as => 'pricing' + end + get '/provider.json' => 'static_config#provider' end -- cgit v1.2.3 From ce412a9a0ccce22b5b9d90f70369b91d5fc46e4f Mon Sep 17 00:00:00 2001 From: elijah Date: Thu, 23 Jan 2014 11:36:17 -0800 Subject: added a customizable 'bye' page for when a user leaves --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'config/routes.rb') diff --git a/config/routes.rb b/config/routes.rb index f8f0c26..f8bb8fb 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -12,6 +12,7 @@ LeapWeb::Application.routes.draw do get 'about', :as => 'about' get 'contact', :as => 'contact' get 'pricing', :as => 'pricing' + get 'bye', :as => 'bye' end get '/provider.json' => 'static_config#provider' -- cgit v1.2.3