Chatwoot/spec/factories/webhooks.rb
Nithin David Thomas c119c6577b
Feature: As a admin, I should be able to add webhooks to account (#572)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
2020-02-29 17:43:49 +05:30

7 lines
132 B
Ruby

FactoryBot.define do
factory :webhook do
account_id { 1 }
inbox_id { 1 }
url { 'https://api.chatwoot.com' }
end
end