From eed1283428c955ad7d5f134e6935c3231b6bb5d7 Mon Sep 17 00:00:00 2001 From: Gregor Wolf Date: Tue, 8 Jul 2025 12:01:54 +0200 Subject: [PATCH] provide the correct context and correct kind case --- .../xsuaa-to-ams/2-integrate-with-ams.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/documentation/xsuaa-to-ams/2-integrate-with-ams.md b/documentation/xsuaa-to-ams/2-integrate-with-ams.md index ea2ace1..b33f535 100644 --- a/documentation/xsuaa-to-ams/2-integrate-with-ams.md +++ b/documentation/xsuaa-to-ams/2-integrate-with-ams.md @@ -34,13 +34,16 @@ The authorization checks that you added to the CAP model apply not only when dep 1. Add the following to your `package.json` file: ```json { - "[development]": { - "auth": { - "Kind": "mocked", - "users": {} - } - } - + "cds": { + "requires": { + "[development]": { + "auth": { + "kind": "mocked", + "users": {} + } + } + } + } } ```