adjust login OTP form

This commit is contained in:
Alex Turchyn
2025-09-11 18:30:39 +03:00
committed by Pete Matsyburka
parent 8e8e5e0e29
commit 30115fc0dc
3 changed files with 54 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
# frozen_string_literal: true
FactoryBot.define do
factory :email_event do
account
event_type { 'bounce' }
message_id { SecureRandom.uuid }
tag { 'submitter_invitation' }
email { Faker::Internet.email }
event_datetime { 1.hour.ago }
end
end