ref: https://linear.app/chatwoot/issue/CW-2464/bot-should-also-return-links-to-the-information
12 lines
216 B
Ruby
12 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :response do
|
|
response_document
|
|
response_source
|
|
question { Faker::Lorem.sentence }
|
|
answer { Faker::Lorem.paragraph }
|
|
account
|
|
end
|
|
end
|