Userモデルに以下の記述を追加することでバリデーションを追加できます。
user.rb
# ...
VALID_PASSWORD_REGEX = /\A(?=.*?[a-z])(?=.*?[\d])[a-z\d]+\z/i
validates :password, format: { with: VALID_PASSWORD_REGEX, message: 'は半角英数を両方含む必要があります’}
# ...
Go to list of users who liked
More than 1 year has passed since last update.
Userモデルに以下の記述を追加することでバリデーションを追加できます。
# ...
VALID_PASSWORD_REGEX = /\A(?=.*?[a-z])(?=.*?[\d])[a-z\d]+\z/i
validates :password, format: { with: VALID_PASSWORD_REGEX, message: 'は半角英数を両方含む必要があります’}
# ...
Register as a new user and use Qiita more conveniently
Go to list of users who liked