Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions guides/security/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,11 @@ annotate Orders with @(restrict: [
A user with accounting areas `[Development, Research]` is not able to send an `UPDATE` request, that changes `accountingArea` from `Research` or `Development` to `CarFleet`, for example.
Note that the `UPDATE` on instances _not matching the request user's accounting areas_ (for example, `CarFleet`) are rejected by standard instance-based authorization checks.

Starting with CAP Java `4.0`, deep authorization is active by default.
It can be disabled by setting <Config java>cds.security.authorization.instanceBased.checkInputData: false</Config>.
::: hint
Input data is not checked for entities which misses key elements; such entities must be protected at the application model level.
:::

The feature can be disabled by setting <Config java>cds.security.authorization.instanceBased.checkInputData: false</Config>.


### Rejected Entity Selection { #reject-403 .java}
Expand Down
Loading