Guest User

Untitled

a guest
Apr 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. map.connect ':year/:month/:day/:permalink', :controller => 'posts', :action => 'display_by_date',
  2. :month => nil, :day => nil, :permalink => nil,
  3. :requirements => {:year => /\d{4}/, :day => /\d{1,2}/, :month => /\d{1,2}/}
  4.  
  5. #chapters_path => /chapters
  6. #chapter_path(1) => /chapters/1
  7. #formatted_chapter_path(1) => /chapters/1.xml
  8. map.resources :posts do |posts|
  9. #/posts/1/revisions/7
  10. #revision_path(id_of_chapter, id_of_revision)
  11. posts.resources :revisions, :comments
  12. end
Add Comment
Please, Sign In to add comment