2020-02-14 17:49:17 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :webhook do
|
|
|
|
account_id { 1 }
|
|
|
|
inbox_id { 1 }
|
2020-02-29 12:13:49 +00:00
|
|
|
url { 'https://api.chatwoot.com' }
|
2022-04-25 12:14:42 +00:00
|
|
|
subscriptions do
|
|
|
|
%w[
|
|
|
|
conversation_status_changed
|
|
|
|
conversation_updated
|
|
|
|
conversation_created
|
|
|
|
message_created
|
|
|
|
message_updated
|
|
|
|
webwidget_triggered
|
|
|
|
]
|
|
|
|
end
|
2020-02-14 17:49:17 +00:00
|
|
|
end
|
|
|
|
end
|