Merge pull request #3210 from Flink/bugfix-regression-topics-controller

Fix regression on editing private messages
This commit is contained in:
Régis Hanol 2015-02-18 10:29:22 +01:00
commit 3614038a5d
2 changed files with 17 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class TopicsController < ApplicationController
end end
changes.delete(:title) if topic.title == changes[:title] changes.delete(:title) if topic.title == changes[:title]
changes.delete(:category_id) if topic.category_id == changes[:category_id].to_i changes.delete(:category_id) if topic.category_id.to_i == changes[:category_id].to_i
success = true success = true
if changes.length > 0 if changes.length > 0

View File

@ -752,6 +752,22 @@ describe TopicsController do
expect(response).to be_success expect(response).to be_success
end end
context 'when topic is private' do
before do
@topic.archetype = Archetype.private_message
@topic.category = nil
@topic.save!
end
context 'when there are no changes' do
it 'does not call the PostRevisor' do
PostRevisor.any_instance.expects(:revise!).never
xhr :put, :update, topic_id: @topic.id, slug: @topic.title, title: @topic.title, category_id: nil
expect(response).to be_success
end
end
end
context "allow_uncategorized_topics is false" do context "allow_uncategorized_topics is false" do
before do before do
SiteSetting.stubs(:allow_uncategorized_topics).returns(false) SiteSetting.stubs(:allow_uncategorized_topics).returns(false)