私がこれにこだわりがあるかどうかはわかりませんが、:new アクションメンバーを作成するにはどうすればよいですか?
私が持っているとき
resources :posts, :except => [:show] do
get :another_new, :on => :collection
end
これにより、(ルート内で)複数形が得られますanother_new_posts GET /posts/another_new(.:format)
。
しかし、メンバーを使用すると、単数形になりますが、:id (ルート内another_new_post GET /posts/:id/another_new(.:format)
) が必要です。
another_new_post
と同じようにルートで言う別の新しいものを作成するにはどうすればよい/posts/new
ですか?