Skip to content

Instantly share code, notes, and snippets.

@joelip
Created June 3, 2013 21:27
Show Gist options
  • Save joelip/5701574 to your computer and use it in GitHub Desktop.
Save joelip/5701574 to your computer and use it in GitHub Desktop.
       posts GET    /posts(.:format)          posts#index
             POST   /posts(.:format)          posts#create
    new_post GET    /posts/new(.:format)      posts#new
   edit_post GET    /posts/:id/edit(.:format) posts#edit
        post GET    /posts/:id(.:format)      posts#show
             PUT    /posts/:id(.:format)      posts#update
             DELETE /posts/:id(.:format)      posts#destroy
   posts_new GET    /posts/new(.:format)      posts#new
  posts_edit GET    /posts/edit(.:format)     posts#edit
posts_update GET    /posts/update(.:format)   posts#update
posts_delete GET    /posts/delete(.:format)   posts#delete
        root        /                         posts#index
                    /new_post(.:format)       posts#new
        edit        /edit(.:format)           posts#edit

So everything looks fine here except I'm just curious what the differences are between all the posts#edit?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment