X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1f59507e78e16a281407f16b804e2111323bc767..5a397711acf2126604a34c7e586300506983f9d9:/app/abilities/api_ability.rb diff --git a/app/abilities/api_ability.rb b/app/abilities/api_ability.rb index d183aca74..ef852b69f 100644 --- a/app/abilities/api_ability.rb +++ b/app/abilities/api_ability.rb @@ -10,7 +10,7 @@ class ApiAbility can [:read, :feed, :search], Note can :create, Note unless user - can [:read, :download], Changeset + can :read, Changeset can :read, ChangesetComment can :read, Tracepoint can :read, User @@ -40,11 +40,13 @@ class ApiAbility end if user.moderator? - can [:destroy, :restore], ChangesetComment if scopes.include?("write_changeset_comments") + can [:create, :destroy], :changeset_comment_visibility if scopes.include?("write_changeset_comments") can :destroy, Note if scopes.include?("write_notes") - can :redact, [OldNode, OldWay, OldRelation] if user&.terms_agreed? && scopes.include?("write_redactions") + can [:create, :destroy], :element_version_redaction if user.terms_agreed? && scopes.include?("write_redactions") + + can :create, UserBlock if scopes.include?("write_blocks") end end end