X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f5af8befa9ffe0c95f4a3c58d2fbb63a2e971ab0..00108bc9b7e9e03a47d89343e7f53eb924977ff8:/app/abilities/api_ability.rb?ds=sidebyside diff --git a/app/abilities/api_ability.rb b/app/abilities/api_ability.rb index a0340c5cd..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] @@ -30,6 +31,8 @@ class ApiAbility can [:read, :update, :destroy], Message if scopes.include?("consume_messages") can :create, Message if scopes.include?("send_messages") + can :read, :active_user_blocks_list if scopes.include?("read_prefs") + if user.terms_agreed? can [:create, :update, :upload, :close, :subscribe, :unsubscribe], Changeset if scopes.include?("write_map") can :create, ChangesetComment if scopes.include?("write_changeset_comments") @@ -41,7 +44,9 @@ 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 end end