★User新規登録同様に編集しようとすると…
Current password can't be blankとエラーメッセージが。。。
※deviseを使用し、ユーザー情報を編集する際にデフォルトのままだと
パスワードの入力を求められる。
❶Deviseをカスタマイズする為にControllerを作成
rails generate devise:controllers users
create app/controllers/users/confirmations_controller.rb
create app/controllers/users/passwords_controller.rb
create app/controllers/users/registrations_controller.rb
create app/controllers/users/sessions_controller.rb
create app/controllers/users/unlocks_controller.rb
create app/controllers/users/omniauth_callbacks_controller.rb
❷update_resourceメソッドをオーバーライド
# registrations_controller.rb
class RegistrationsController < Devise::RegistrationsController
protected
def update_resource(resource, params)
resource.update_without_password(params)
end
end
❸ルーティングに追記
devise_for :users, controllers: { registrations: 'users/registrations' }
❹パスワード入力フォームを削除
# views/devise/registrations/edit.html.erbから削除
↓忘れがちな部分
★ユーザーのcurrent_passwordが不明と言われている…
❺attr_accessorを使用して記載
(Userモデルに指定した値をインスタンス変数として取り扱ってくれる)
※編集時にはバリデーションが働かないように記載
# 省略
attr_accessor :current_password
with_options format: { with: /\A(?=.*?[a-z])(?=.*?\d)[a-z\d]{6,}+\z/i } do
validates :password, presence: true, on: :create
validates :password_confirmation, presence: true, on: :create
end
❻ApplicationControllerにaccount_updateを追記
# app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
before_action :configure_permitted_parameters, if: :devise_controller?
private
def configure_permitted_parameters
devise_parameter_sanitizer.permit(:sign_up, keys: [#省略])
devise_parameter_sanitizer.permit(:account_update, keys: [#省略])
end
end