* revert new welcome as root until can fix all the tests

This commit is contained in:
Seth Call 2014-02-01 20:48:19 +00:00
parent 177220bae8
commit a05a85aad7
1 changed files with 3 additions and 2 deletions

View File

@ -9,9 +9,10 @@ SampleApp::Application.routes.draw do
resources :sessions, only: [:new, :create, :destroy]
#root to: 'static_pages#home'
#root to: 'clients#index'
root to: 'users#welcome'
root to: 'clients#index'
#root to: 'users#welcome'
match '/welcome', to: 'users#welcome'
# This page is still here, and is under test. Keep a route to it.
match '/oldhome', to: 'static_pages#home'