diff --git a/docs/pages/reference/data-model/data-access-policies.mdx b/docs/pages/reference/data-model/data-access-policies.mdx index b5d699155ce00..bd97deb75a9ec 100644 --- a/docs/pages/reference/data-model/data-access-policies.mdx +++ b/docs/pages/reference/data-model/data-access-policies.mdx @@ -285,7 +285,6 @@ learn more about policy evaluation. The optional `row_level` parameter, when present, configures [row-level access][ref-dap-rls] for a policy by specifying `filters` that should apply to result set rows. -You can also use the optional `allow_all` parameter to explicitly allow or disallow all rows. In the following example, users with the `manager` role are allowed to access only rows that have the `state` dimension matching the state from the [security context][ref-sec-ctx]. @@ -299,9 +298,6 @@ cubes: # ... access_policy: - - role: "*" - row_level: - allow_all: false - role: manager row_level: @@ -316,12 +312,6 @@ cube(`orders`, { // ... access_policy: [ - { - role: `*`, - row_level: { - allow_all: false - } - }, { role: `manager`, row_level: { @@ -363,4 +353,4 @@ learn more about policy evaluation. [ref-sec-ctx]: /product/auth/context [ref-rest-query-filters]: /product/apis-integrations/rest-api/query-format#filters-format [ref-rest-query-ops]: /product/apis-integrations/rest-api/query-format#filters-operators -[ref-rest-boolean-ops]: /product/apis-integrations/rest-api/query-format#boolean-logical-operators \ No newline at end of file +[ref-rest-boolean-ops]: /product/apis-integrations/rest-api/query-format#boolean-logical-operators