only level 2 users can create spending proposals

This commit is contained in:
Juanjo Bazán
2016-01-13 13:35:21 +01:00
parent e4dc496b89
commit 1ab0b31d4b
7 changed files with 28 additions and 7 deletions

View File

@@ -22,7 +22,6 @@ module Abilities
can :create, Comment
can :create, Debate
can :create, Proposal
can :create, SpendingProposal
can [:flag, :unflag], Comment
cannot [:flag, :unflag], Comment, user_id: user.id
@@ -41,6 +40,7 @@ module Abilities
if user.level_two_or_three_verified?
can :vote, Proposal
can :vote_featured, Proposal
can :create, SpendingProposal
end
can :create, Annotation