ref: https://linear.app/chatwoot/issue/CW-2464/bot-should-also-return-links-to-the-information
11 lines
207 B
Ruby
11 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :response_document do
|
|
response_source
|
|
content { Faker::Lorem.paragraph }
|
|
document_link { Faker::Internet.url }
|
|
account
|
|
end
|
|
end
|