LoginSignup
3
3

More than 5 years have passed since last update.

Deviseで新しい項目を追加したいとき

Posted at

deviseで新しい項目追加したいときどうすればいいか分かったのでメモ。

application_controller.rb
class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception

  before_filter :configure_permitted_parameters, if: :devise_controller?

  protected

  def configure_permitted_parameters
    devise_parameter_sanitizer.for(:sign_up) << [:add_setting1, :add_setting2]
  end

end

これを追加することでparameterの受け渡し可能になった!

3
3
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
3
3