mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-07-06 13:52:11 +00:00
7 lines
174 B
Ruby
7 lines
174 B
Ruby
|
# frozen_string_literal: true
|
||
|
Fabricator(:solved_topic, from: DiscourseSolved::SolvedTopic) do
|
||
|
topic
|
||
|
answer_post { Fabricate(:post) }
|
||
|
accepter { Fabricate(:user) }
|
||
|
end
|