class UsersController < ApplicationController
  ...

  def user_params
    params.require(:user).permit(
      :email,
      :first_name,
      :last_name,
      :first_name_kana,
      :last_name_kana,
      :profile
    )
  end
end

こんな風にpermitするparameterがたくさんある時、

class UsersController < ApplicationController
  ...

  def user_params
    params.require(:user).permit(%i(
      email
      first_name
      last_name
      first_name_kana
      last_name_kana
      profile
    ))
  end
end

こう書くと増減した時のメンテが楽。

Comments


Option