Guest User

Untitled

a guest
May 27th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ActionController::Routing::Routes.draw do |map|
  2.  
  3.  
  4. map.root :controller => 'home', :action => 'index'
  5. map.connect ':controller/:action/:id'
  6. map.connect ':controller/:action/:id.:format'
  7.  
  8. #map.resources :users
  9. #map.resource :session
  10.  
  11. map.signup '/signup', :controller => 'users', :action => 'new'
  12. map.login '/login', :controller => 'session', :action => 'show'
  13. map.logout '/logout', :controller => 'session', :action => 'destroy'
  14. map.complete '/complete', :controller => 'users', :action => 'complete'
  15. map.home '/home', :controller => 'home', :action => 'index'
  16. #map.panel '/panel', :controller => 'panel', :action => 'edit'
  17. end
Add Comment
Please, Sign In to add comment