]> git.openstreetmap.org Git - rails.git/blobdiff - app/abilities/ability.rb
Add update block ability with conditions
[rails.git] / app / abilities / ability.rb
index 907712328b77c4de1d3421ab96525d895d53ff00..6baa67be570fc950a70eeadf1e31cecdf0e05a63 100644 (file)
@@ -60,7 +60,10 @@ class Ability
           can [:index, :show, :resolve, :ignore, :reopen], Issue
           can :create, IssueComment
           can [:new, :create, :edit, :update, :destroy], Redaction
-          can [:new, :edit, :create, :update, :revoke, :revoke_all], UserBlock
+          can [:new, :create, :revoke, :revoke_all], UserBlock
+          can :update, UserBlock, :creator => user
+          can :update, UserBlock, :revoker => user
+          can :update, UserBlock, :active? => true
         end
 
         if user.administrator?