共通のルーティング定義
説明
ルーティング内などで使いまわせる共通のルーティングを定義
使い方
concern(名前, [コールバック])
例
名前を使ってルーティングを定義
concern :purchasable, Purchasable.new(returnable: true)
ブロック
concern :commentable do |options|
resources :comments, options
end
ルーティング内などで使いまわせる共通のルーティングを定義
concern(名前, [コールバック])
concern :purchasable, Purchasable.new(returnable: true)
concern :commentable do |options|
resources :comments, options
end