X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/eab4eec59eb6b1bf7f1ed6f552e17450a620223f..ae3e804ee6881c845a944f4825093f8cd8a3b636:/app/abilities/ability.rb diff --git a/app/abilities/ability.rb b/app/abilities/ability.rb index c0b2f3982..6baa67be5 100644 --- a/app/abilities/ability.rb +++ b/app/abilities/ability.rb @@ -42,7 +42,9 @@ class Ability can [:new, :show, :create, :destroy], :oauth2_authorization can [:edit, :update, :destroy], :account can [:show], :dashboard - can [:new, :create, :edit, :update, :comment, :subscribe, :unsubscribe], DiaryEntry + can [:new, :create, :subscribe, :unsubscribe], DiaryEntry + can :update, DiaryEntry, :user => user + can [:create], DiaryComment can [:make_friend, :remove_friend], Friendship can [:new, :create, :reply, :show, :inbox, :outbox, :muted, :mark, :unmute, :destroy], Message can [:close, :reopen], Note @@ -58,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?