Chatwoot/spec/factories/mentions.rb

11 lines
156 B
Ruby
Raw Permalink Normal View History

2022-06-22 05:34:42 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :mention do
mentioned_at { Time.current }
account
conversation
user
end
end