0
0

More than 1 year has passed since last update.

【Rails】リーダブルなroute.rb

Last updated at Posted at 2021-10-01

リーダブルなroute.rbの書き方

CRUDなbookコントローラと、photoコントローラ
独自アクションがそれぞれ一つづつある場合。

以下のように、コントローラ毎に分けることで、
開発者にとって読みやすくする。

routes.rb
Rails.application.routes.draw do
 controller :books do
  resources :books
  scope path: "hoge"
   get "subscribe", action: :subscribe
  end
 end
 controller :photos do
  resources :photos
   scope path: "hoge"
    get "unsubscribe", action: :unsubscribe
   end
 end
end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0