scinote-web/spec/factories/webhooks.rb
2021-06-17 22:00:13 +02:00

10 lines
169 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :webhook do
activity_filter
http_method { 'post' }
url { 'https://www.example.com' }
end
end