2020-04-10 11:12:37 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :bot_message_card, class: Hash do
|
|
|
|
title { Faker::Book.name }
|
|
|
|
description { Faker::Movie.quote }
|
2021-11-11 07:33:48 +00:00
|
|
|
media_url { 'https://chatwoot-assets.local/sample.png' }
|
2020-04-10 11:12:37 +00:00
|
|
|
actions do
|
|
|
|
[{
|
|
|
|
text: 'Select',
|
|
|
|
type: 'postback',
|
|
|
|
payload: 'TACOS'
|
|
|
|
}, {
|
|
|
|
text: 'More info',
|
|
|
|
type: 'link',
|
|
|
|
uri: 'http://example.org'
|
|
|
|
}]
|
|
|
|
end
|
|
|
|
|
|
|
|
initialize_with { attributes }
|
|
|
|
end
|
|
|
|
end
|