scinote-web/spec/factories/webhooks.rb

10 lines
169 B
Ruby
Raw Normal View History

2021-06-17 20:54:30 +08:00
# frozen_string_literal: true
FactoryBot.define do
factory :webhook do
activity_filter
2021-06-18 04:00:13 +08:00
http_method { 'post' }
url { 'https://www.example.com' }
2021-06-17 20:54:30 +08:00
end
end