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