mention.rb 155 B

12345678
  1. FactoryBot.define do
  2. factory :mention do
  3. mentionable { create(:ticket) }
  4. user_id { 1 }
  5. created_by_id { 1 }
  6. updated_by_id { 1 }
  7. end
  8. end