X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/392d3d12264c83d7ab03d34471792476fac31cf6..ae3e804ee6881c845a944f4825093f8cd8a3b636:/app/abilities/ability.rb diff --git a/app/abilities/ability.rb b/app/abilities/ability.rb index a0eea302f..6baa67be5 100644 --- a/app/abilities/ability.rb +++ b/app/abilities/ability.rb @@ -42,7 +42,8 @@ class Ability can [:new, :show, :create, :destroy], :oauth2_authorization can [:edit, :update, :destroy], :account can [:show], :dashboard - can [:new, :create, :edit, :update, :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 @@ -59,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?