Chatwoot/spec/factories/mentions.rb
2022-06-22 11:04:42 +05:30

10 lines
156 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :mention do
mentioned_at { Time.current }
account
conversation
user
end
end