1
2

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 5 years have passed since last update.

Solidusの新規登録時に項目を追加する

Last updated at Posted at 2017-11-27

こんばんは!Solidusの会員新規登録でユーザー名を追加したかったので追加を方法を調べました。

まずはユーザーテーブルにカラムを追加します。

bundle exec rails g migration AddNameToSpreeUsers name:string
class AddNameToSpreeUsers < ActiveRecord::Migration[5.1]
  def change
    add_column :spree_users, :name, :string
  end
end

config/initializers/spree.rb に以下のコードを追記します。

config/initializers/spree.rb
Spree::PermittedAttributes.user_attributes << :name

新規登録フォームにユーザー名を追加します。Viewのカスタマイズ方法は割愛します。
これで登録時にユーザー名を追加することができます。

スクリーンショット 2017-11-27 22.27.56.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?