1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Deviseでユーザー情報の編集

Last updated at Posted at 2020-12-16

★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から削除

↓忘れがちな部分

425bd06c483f34fe28dc03a14824df75.png

★ユーザーの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

★Devise少し理解…

今回の教科書はこちら

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?