mention.rb 232 B

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