Also allow system_user to send pm's even if enable_private_messages is disabled

This commit is contained in:
Neil Lalonde
2014-04-25 14:52:57 -04:00
parent 1a7ef2ae64
commit 7993c27ce5
2 changed files with 5 additions and 2 deletions

View File

@ -136,9 +136,10 @@ describe Guardian do
Guardian.new(user).can_send_private_message?(another_user).should be_false
end
it "returns true for the contact user" do
it "returns true for the contact user and system user" do
SiteSetting.stubs(:site_contact_username).returns(user.username)
Guardian.new(user).can_send_private_message?(another_user).should be_true
Guardian.new(Discourse.system_user).can_send_private_message?(another_user).should be_true
end
end
end