Let\'s say I want to support both GET and POST methods on the same URL. How would I go about handling that in a rails controller action?
Just need to use this, to use only get and post in the same route
resources :articles do member do match 'action_do-you_want', via: [:get, :post] end end