Do you want to know how to use only POST? Do this for example:
resources :items, :only => [:create]
.. etc. This is for Rails 3, by the way, and will create a single resource for creating POST. Or, if you only need a small set from the REST set, simply:
match 'items/:id' => "items#create', :via => :post
etc.
buddhamagnet Apr 26 2018-12-12T00: 00Z
source share