Chatwoot/spec/factories/inboxes.rb
2019-10-20 14:17:26 +05:30

9 lines
166 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :inbox do
account
association :channel, factory: :channel_widget
name { 'Inbox' }
end
end