Chatwoot/spec/factories/inboxes.rb
Sojan Jose 722f540b03 [Feature] Email collect message hooks (#331)
- Add email collect hook on creating conversation
- Merge contact if it already exist
2020-01-09 13:06:40 +05:30

13 lines
248 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :inbox do
account
channel { FactoryBot.build(:channel_widget, account: account) }
name { 'Inbox' }
after(:create) do |inbox|
inbox.channel.save!
end
end
end