我的路由文件有一個定義的方法處理:如何更改Rails路由上的自動命名參數ID?
resources :disputes do
scope module: :disputes do
resources :conferences, shallow: true do
put :finish
end
end
end
導軌自動把與名稱:conference_id
帕拉姆ID,但我希望使用:id
來代替。
conference_finish PUT /conferences/:conference_id/finish(.:format) disputes/conferences#finish {:format=>:json}
有辦法做到這一點嗎?謝謝。