diff --git a/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/execution-flow.md b/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/execution-flow.md index 89b0e4a3ad9..d3bbd82e19b 100644 --- a/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/execution-flow.md +++ b/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/execution-flow.md @@ -22,11 +22,11 @@ The priority of scope is configurable. To modify it, you should override `\Spryk The default priority: -| SCOPE | PRIORITY | -|-----|-----| -| global | 2 | -| inherited | 1 | -| segment | 0 | +| SCOPE | DATABASE VALUE| PRIORITY | +|-----------|----------------|----------| +| global | 0 | 2 | +| segment | 1 | 0 | +| inherited | 2 | 1 | By default, rules with a global scope have the highest priority, and rules with a segment scope have the lowest priority. diff --git a/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/rules-and-scopes/rules-and-scopes.md b/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/rules-and-scopes/rules-and-scopes.md index 365d1612de6..80e69aab059 100644 --- a/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/rules-and-scopes/rules-and-scopes.md +++ b/docs/marketplace/dev/feature-walkthroughs/202307.0/persistence-acl-feature-walkthrough/rules-and-scopes/rules-and-scopes.md @@ -36,11 +36,11 @@ The concept of scopes is very flexible. It lets you create any rules that suit t As mentioned above, there are 3 types of scopes: `global`, `segment` and `inherited`. In the database layer scope represented as enum: -| Scope | Database value | -|-----|-----| -| global | 0 | -| segment | 1 | -| inherited | 2 | +| SCOPE | DATABASE VALUE | PRIORITY | +|-----------|----------------|----------| +| global | 0 | 2 | +| segment | 1 | 0 | +| inherited | 2 | 1 | Depending on the scope, the system behaves differently. Read the documentation for each of them: - [Global scope](/docs/marketplace/dev/feature-walkthroughs/{{page.version}}/persistence-acl-feature-walkthrough/rules-and-scopes/global-scope.html)