-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ユーザー登録のemailにバリデーションを追加 #7466
ユーザー登録のemailにバリデーションを追加 #7466
Conversation
@SuzukaHori ご確認よろしくお願いいたします🙇♀️ |
@a-kuroki-gs 申し訳ありません💦💦 |
@SuzukaHori |
@dowdiness ご確認よろしくお願いいたします🙇♀️ |
@dowdiness 連絡がつかなさそうであれば |
@a-kuroki-gs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
お待たせしました!
手元の環境で利用可能・利用不可能なemailの例を全て試してみました。
(例を提示されているのがとても分かりやすかったです🙆♂️)
確かにIssueで議論されている仕様通りにバリデーションが動いていました。
実装とテストの両方とも問題無く出来ていると思うのでAproveします👍
@dowdiness @komagata |
@@ -163,6 +163,34 @@ class UserTest < ActiveSupport::TestCase | |||
assert user.save(context: :retire_reason_presence) | |||
end | |||
|
|||
test 'email' do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認させていただきました。OKです~👌
Issue
概要
ユーザー登録のemailにバリデーションが何も設定されていなかったので設定した。
こちらのコメントで議論(検討)し、
URI::MailTo::EMAIL_REGEXP
を用いることにした。[email protected]
abcd.AB-CD_12/[email protected]
[email protected]
abcd ABCD [email protected]
(abcdABCD1234)@fjord.jp
abcd@ABCD@[email protected]
[email protected]
abcdABCD1234@fjord_fjord.jp
変更確認方法
feature/add-validation-to-user-email
をローカルに取り込む4242 4242 4242 4242
が使用可能(有効期限は任意の将来の日付、セキュリティコードは任意の3桁の数字)Screenshot
不正な値を入力し、ユーザー作成を行った場合
変更前
変更後