Chatwoot/spec/factories/webhooks.rb

8 lines
132 B
Ruby
Raw Normal View History

2020-02-14 17:49:17 +00:00
FactoryBot.define do
factory :webhook do
account_id { 1 }
inbox_id { 1 }
url { 'https://api.chatwoot.com' }
2020-02-14 17:49:17 +00:00
end
end