Chatwoot/spec/factories/inboxes.rb

10 lines
166 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :inbox do
account
association :channel, factory: :channel_widget
2019-10-20 08:47:26 +00:00
name { 'Inbox' }
end
end