10 lines
148 B
Ruby
10 lines
148 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :contact_inbox do
|
||
|
contact
|
||
|
inbox
|
||
|
source_id { SecureRandom.uuid }
|
||
|
end
|
||
|
end
|