message.rb 231 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :'chat/message' do
  4. chat_session factory: :'chat/session'
  5. content { 'test 1234' }
  6. created_by_id { 1 }
  7. end
  8. end