X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3bdbc35bbd8f44bab813adb5c9afe505868e4a09..2de26d54ef22c5653f830d0ce4938df78d0ca0fd:/app/abilities/api_ability.rb diff --git a/app/abilities/api_ability.rb b/app/abilities/api_ability.rb index ec4de8f8e..edf051fae 100644 --- a/app/abilities/api_ability.rb +++ b/app/abilities/api_ability.rb @@ -11,6 +11,7 @@ class ApiAbility can :create, Note unless user can [:read, :download], Changeset + can :read, ChangesetComment can :read, Tracepoint can :read, User can :read, [Node, Way, Relation, OldNode, OldWay, OldRelation] @@ -43,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