chat.rb 274 B

1234567891011
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :chat do
  4. sequence(:name) { |n| "Chat #{n}" }
  5. max_queue { 5 }
  6. active { true }
  7. created_by_id { 1 }
  8. updated_by_id { 1 }
  9. end
  10. end