ba8f055802
* change sender_id to contact_id in conversations * Fix failing tests * Fix seeds * fix specs * Fix issues in facebook messenger
24 lines
704 B
Ruby
24 lines
704 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :conversation do
|
|
status { 'open' }
|
|
display_id { SecureRandom.uuid }
|
|
user_last_seen_at { Time.current }
|
|
agent_last_seen_at { Time.current }
|
|
locked { false }
|
|
|
|
factory :complete_conversation do
|
|
after(:build) do |conversation|
|
|
conversation.account ||= create(:account)
|
|
conversation.inbox ||= create(
|
|
:inbox,
|
|
account: conversation.account,
|
|
channel: create(:channel_widget, account: conversation.account)
|
|
)
|
|
conversation.contact ||= create(:contact, account: conversation.account)
|
|
conversation.assignee ||= create(:user)
|
|
end
|
|
end
|
|
end
|
|
end
|