FIX: all PMs should be flaggable

This commit is contained in:
Régis Hanol 2015-01-08 16:06:43 +01:00
parent 03388e11ab
commit 6cec925f26
2 changed files with 9 additions and 2 deletions

View File

@ -13,7 +13,8 @@ module PostGuardian
return false if action_key == :notify_moderators && !SiteSetting.enable_private_messages
# we allow flagging for trust level 1 and higher
(is_flag && @user.has_trust_level?(TrustLevel[1]) && not(already_did_flagging)) ||
# always allowed for private messages
(is_flag && not(already_did_flagging) && (@user.has_trust_level?(TrustLevel[1]) || post.topic.private_message?)) ||
# not a flagging action, and haven't done it already
not(is_flag || already_taken_this_action) &&

View File

@ -75,11 +75,17 @@ describe Guardian do
Guardian.new(user).post_can_act?(post, :like).should be_truthy
end
it "returns false for a new user flagging something as spam" do
it "returns false for a new user flagging a standard post as spam" do
user.trust_level = TrustLevel[0]
Guardian.new(user).post_can_act?(post, :spam).should be_falsey
end
it "returns true for a new user flagging a private message as spam" do
post.topic.archetype = Archetype.private_message
user.trust_level = TrustLevel[0]
Guardian.new(user).post_can_act?(post, :spam).should be_truthy
end
it "returns false for a new user flagging something as off topic" do
user.trust_level = TrustLevel[0]
Guardian.new(user).post_can_act?(post, :off_topic).should be_falsey