fixes abilities: level 3 users can vote proposals, not just level 2

This commit is contained in:
kikito
2015-09-12 14:13:24 +02:00
parent 6e27917d6e
commit 22e8d615aa
2 changed files with 7 additions and 1 deletions

View File

@@ -42,7 +42,7 @@ class Ability
can :vote, Comment
end
if user.level_two_verified?
if user.level_two_or_three_verified?
can :vote, Proposal
end