Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include delete request parmeters in generated documentation
One of my API routes allows multiple objects to be deleted. In routing, it looks like this: ```ruby resources :posts do collection do delete :destroy end end ``` The generated examples from tests did not include the parameters. This patch treats :DELETE like PUT/POST/PATCH and includes the parameters in the generated examples
- Loading branch information