mention.rb 229 B

12345678910
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :mention do
  4. mentionable factory: :ticket
  5. user_id { 1 }
  6. created_by_id { 1 }
  7. updated_by_id { 1 }
  8. end
  9. end