Files
astuto/spec/factories/webhooks.rb

12 lines
285 B
Ruby
Raw Normal View History

2024-12-20 14:06:48 +01:00
FactoryBot.define do
factory :webhook do
sequence(:name) { |n| "Webhook#{n}" }
description { "Webhook description" }
url { "http://example.com" }
trigger { "new_post" }
http_method { "http_post" }
http_body { "requestbody" }
http_headers { "" }
end
end