mirror of
https://github.com/discourse/discourse.git
synced 2025-05-28 13:51:18 +08:00
FIX: topic_creator accepts participant_count in import mode (#10632)
The issue mentioned here: https://meta.discourse.org/t/imported-private-discussion-doesnt-appear-in-the-author-inbox/163252 `participant_count` is important to attribute for private messages. If they are imported, we should allow them to set that attribute. A workaround would be evaluating `update_statistics` method on each Topic but that is less performant.
This commit is contained in:

committed by
GitHub

parent
cac64a95aa
commit
d260e42c8a
@ -70,6 +70,16 @@ describe TopicCreator do
|
||||
expect(topic).to be_valid
|
||||
expect(topic.category).to eq(category)
|
||||
end
|
||||
|
||||
it "ignores participant_count without raising an error" do
|
||||
topic = TopicCreator.create(user, Guardian.new(user), valid_attrs.merge(participant_count: 3))
|
||||
expect(topic.participant_count).to eq(1)
|
||||
end
|
||||
|
||||
it "accepts participant_count in import mode" do
|
||||
topic = TopicCreator.create(user, Guardian.new(user), valid_attrs.merge(import_mode: true, participant_count: 3))
|
||||
expect(topic.participant_count).to eq(3)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user