webhook.rb 343 B

123456789101112
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :webhook do
  4. sequence(:name) { |n| "Test webhook #{n}" }
  5. endpoint { 'http://example.com/endpoint' }
  6. ssl_verify { true }
  7. active { true }
  8. created_by_id { 1 }
  9. updated_by_id { 1 }
  10. end
  11. end