Do you know how a resource edit path should looks like on a restful web app?
Can't find any serious reference but the Ruby on Rails way that it's just a convention.
I'm not talking about the put request that is used to update the resource but the path that usually returns a form, or similar, to the user to let him create and submit the final put request that updates the resource.
An example of the previously mentioned Ruby on Rails way would be a get request to:
http://domain.com/resource_name/resource_id/edit
Just wondering if there's some serious reference or explanation that makes this a good approach or not.