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

devise(メール承認付き)のパラメータをコンソールで直接編集する

0
Posted at

deviseで新規userを登録する

user.skip_confirmationでメール承認をスキップできる。

user = User.new(email: "hogehoge@mail.co.jp", password: "hogehoge")
user.skip_confirmation!
user.save

既存のuserを編集する

user.reconfirmationでメール承認をスキップする。

user = User.find_by(email: "hogehoge@mail.co.jp")
user.email = "fugafuga@mail.com"
user.skip_reconfirmation!
user.save
0
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
0
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?