X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a5ee93b30110e2c89879e0a67ab2b1c18158faf2..ec73d70659686a51f5f4b6b737c9dea1daff8325:/app/abilities/api_ability.rb diff --git a/app/abilities/api_ability.rb b/app/abilities/api_ability.rb index acacec049..9a7bf254a 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 @@ -44,7 +44,7 @@ class ApiAbility 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