IN the first few lines is where i made the changes. Is there a way I can post the project so i can give the most information possible? also i am not using the users controller/file at all. Does authorization require me to use the USer scaffold, because i am using the Newuser scaffold.
Cms::Application.routes.draw do
root :to => "home#merchant"
controller :sessions do
get 'login' => :new
post 'login' => :create
delete 'logout' => :destroy
end
resources :newusers
resources :users
resources :maintenances
resources :leases
resources :sales
resources :saleterminals
resources :salesreps
resources :terminaltypes
resources :processings
resources :manufacturers
resources :promotions
get "community/index"
resources :currents
resources :merchants
get "home/index"
get "home/about"
get "home/contact"
get "home/processing101"
get "home/terminaloptions"
get "home/weekend"
get "home/conditionsofuse"
get "home/privacypolicy"
get "home/announcements"
get "home/support"
get "home/sitemap"
get "home/search"
post "home/search"
end