mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-26 16:04:59 +00:00
9 lines
136 B
Ruby
9 lines
136 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :label do
|
|
account
|
|
sequence(:title) { |n| "Label_#{n}" }
|
|
end
|
|
end
|