X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/24b138db094e4b5e8d062c5248ee867967dc0fd7..600812f6ad23ab7e1cb3ab25c4b09844ba6daa55:/app/abilities/ability.rb diff --git a/app/abilities/ability.rb b/app/abilities/ability.rb index 28380392d..e72b4e85b 100644 --- a/app/abilities/ability.rb +++ b/app/abilities/ability.rb @@ -37,13 +37,15 @@ class Ability if Settings.status != "database_offline" can [:index, :new, :create, :show, :edit, :update, :destroy], ClientApplication can [:new, :create, :edit, :update, :comment, :subscribe, :unsubscribe], DiaryEntry + can [:make_friend, :remove_friend], Friendship can [:new, :create, :reply, :show, :inbox, :outbox, :mark, :destroy], Message can [:close, :reopen], Note can [:new, :create], Report - can [:mine, :new, :create, :edit, :update, :delete], Trace - can [:account, :go_public, :make_friend, :remove_friend], User + can [:mine, :new, :create, :edit, :update, :destroy], Trace + can [:account, :go_public], User if user.moderator? + can [:hide, :hidecomment], DiaryEntry can [:index, :show, :resolve, :ignore, :reopen], Issue can :create, IssueComment can [:new, :create, :edit, :update, :destroy], Redaction @@ -51,10 +53,10 @@ class Ability end if user.administrator? - can [:hide, :unhide, :hidecomment, :unhidecomment], [DiaryEntry, DiaryComment] + can [:hide, :unhide, :hidecomment, :unhidecomment], DiaryEntry can [:index, :show, :resolve, :ignore, :reopen], Issue can :create, IssueComment - can [:set_status, :delete, :index], User + can [:set_status, :destroy, :index], User can [:grant, :revoke], UserRole end end