mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
9 lines
146 B
Ruby
9 lines
146 B
Ruby
FactoryBot.define do
|
|
factory :team do
|
|
name { 'MyString' }
|
|
description { 'MyText' }
|
|
allow_auto_assign { true }
|
|
account
|
|
end
|
|
end
|