LoginSignup
5
1

More than 5 years have passed since last update.

Railsのdeviseでactionごとにlayoutを変える

Posted at

状況

/user/sing_upと/user/settingで別のlayoutを指定したい

方法

How To: Create custom layouts

ここにdeviseでlayout変更の方法が書いてある。けどlayout onlyをそれぞれ書いても1行目しか実行されないのでアクションごとの指定ができない。

registrations_controller.rbにメソッド追加する。

private
def set_registrations_layout
  if action_name == 'new'
    "hoge"
  else
    "huga"
  end
end

で、

layout :select_layout

を指定すればオーケー

5
1
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
5
1