Guest User

Untitled

a guest
May 2nd, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Market::Application.routes.draw do
  2. root :to => "home#index"
  3.  
  4. match ':device_type/:controller(/:action(/:id(.:format)))'
  5.  
  6. devise_for :users
  7. resources :users
  8.  
  9. resources :merchants do
  10. resources :merchant_items
  11. end
  12.  
  13. resources :cities
  14. resources :states do
  15. collection do
  16. get 'get_merchant_cities'
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment