trabajo-afectivo/spec/factories/webhook.rb

11 lines
266 B
Ruby
Raw Normal View History

FactoryBot.define do
factory :webhook do
sequence(:name) { |n| "Test webhook #{n}" }
endpoint { 'http://example.com/endpoint' }
ssl_verify { true }
active { true }
created_by_id { 1 }
updated_by_id { 1 }
end
end