Guest User

Untitled

a guest
Jan 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. # routes.rb
  2.  
  3. root :to => 'pages#home'
  4.  
  5. resources :sessions, :only => [:new, :create, :destroy]
  6. resources :works
  7. resources :categories
  8. resources :articles
  9. resources :exhibits
  10.  
  11. match '/signin', :to => 'sessions#new'
  12. match '/signout', :to => 'sessions#destroy'
  13. match '/info', :to => 'pages#info'
  14. match '/admin/drafts', :to => 'pages#drafts'
Add Comment
Please, Sign In to add comment