mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
10 lines
175 B
Ruby
10 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :canned_response do
|
|
content { 'Content' }
|
|
sequence(:short_code) { |n| "CODE#{n}" }
|
|
account
|
|
end
|
|
end
|