@cdmbase/wiki-browser 12.0.18-alpha.50 → 12.0.18-alpha.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -291,6 +291,18 @@
291
291
  "Cache-Control": "no-cache"
292
292
  }
293
293
  },
294
+ {
295
+ "contentId": "adminide-modules-account-disable-consent-screen",
296
+ "slug": "account-disable-consent-screen",
297
+ "filePath": "/content/docs/adminide-modules/account/disable-consent-screen.md",
298
+ "relativePath": "adminide-modules/account/disable-consent-screen.md",
299
+ "categoryId": "adminide-modules",
300
+ "title": "Disable Consent Screen",
301
+ "description": "",
302
+ "author": "Documentation",
303
+ "updatedAt": "Recently",
304
+ "frontmatter": {}
305
+ },
294
306
  {
295
307
  "contentId": "adminide-modules-account-keycloak-remix-setup",
296
308
  "slug": "account-keycloak-remix-setup",
@@ -3916,6 +3928,15 @@
3916
3928
  "updatedAt": "Recently",
3917
3929
  "categoryId": "adminide-modules"
3918
3930
  },
3931
+ {
3932
+ "id": "adminide-modules-account-disable-consent-screen",
3933
+ "title": "Disable Consent Screen",
3934
+ "description": "",
3935
+ "slug": "account-disable-consent-screen",
3936
+ "author": "Documentation",
3937
+ "updatedAt": "Recently",
3938
+ "categoryId": "adminide-modules"
3939
+ },
3919
3940
  {
3920
3941
  "id": "adminide-modules-account-auth0-login",
3921
3942
  "title": "Facebook Setup",
@@ -5545,6 +5566,7 @@
5545
5566
  "ui-schemabasedui": "/content/docs/UI/SchemaBasedUI.md",
5546
5567
  "ui-slotfillcomponent": "/content/docs/UI/SlotFillComponent.md",
5547
5568
  "adminide-modules-account-auth0-login": "/content/docs/adminide-modules/account/auth0-login.md",
5569
+ "adminide-modules-account-disable-consent-screen": "/content/docs/adminide-modules/account/disable-consent-screen.md",
5548
5570
  "adminide-modules-account-keycloak-remix-setup": "/content/docs/adminide-modules/account/keycloak-remix-setup.md",
5549
5571
  "adminide-modules-account-remix-auth-setup": "/content/docs/adminide-modules/account/remix-auth-setup.md",
5550
5572
  "adminide-modules-account-various-auth-qatest": "/content/docs/adminide-modules/account/various-auth-qatest.md",
@@ -5754,6 +5776,21 @@
5754
5776
  "Cache-Control": "no-cache"
5755
5777
  }
5756
5778
  },
5779
+ {
5780
+ "type": "file",
5781
+ "name": "disable-consent-screen",
5782
+ "title": "Disable Consent Screen",
5783
+ "path": "adminide-modules/account/disable-consent-screen.md",
5784
+ "contentId": "adminide-modules-account-disable-consent-screen",
5785
+ "slug": "account-disable-consent-screen",
5786
+ "categoryId": "adminide-modules",
5787
+ "filePath": "/content/docs/adminide-modules/account/disable-consent-screen.md",
5788
+ "relativePath": "adminide-modules/account/disable-consent-screen.md",
5789
+ "description": "",
5790
+ "author": "Documentation",
5791
+ "updatedAt": "Recently",
5792
+ "frontmatter": {}
5793
+ },
5757
5794
  {
5758
5795
  "type": "file",
5759
5796
  "name": "keycloak-remix-setup",
@@ -10298,6 +10335,12 @@
10298
10335
  "children": [],
10299
10336
  "isFile": true
10300
10337
  },
10338
+ {
10339
+ "title": "Disable Consent Screen",
10340
+ "path": "/help/adminide-modules/account-disable-consent-screen",
10341
+ "children": [],
10342
+ "isFile": true
10343
+ },
10301
10344
  {
10302
10345
  "title": "Keycloak Authentication Setup with Remix",
10303
10346
  "path": "/help/adminide-modules/account-keycloak-remix-setup",
@@ -0,0 +1,60 @@
1
+ # Disable Auth0 Consent Screen for Management API
2
+
3
+ This is the first place we need to check for disabling the consent screen. In our case, these parameters were already correctly set:
4
+
5
+ https://community.auth0.com/t/disable-the-consent-screen-for-profile-when-logging-into-auth0-applications/96402
6
+
7
+ ---
8
+
9
+ ## Steps to Disable/Enable Consent Screen
10
+
11
+ Since we are using the **Management API as the audience**, follow the steps below:
12
+
13
+ ### 1. Get Resource Server ID
14
+
15
+ Make the following request to fetch the resource servers:
16
+
17
+ ```bash
18
+ curl --request GET \
19
+ --url "https://dev-cdebase.auth0.com/api/v2/resource-servers" \
20
+ --header "authorization: Bearer YOUR_MANAGEMENT_API_TOKEN"
21
+ ```
22
+
23
+ > **Note:** You can copy the Management API token from the Auth0 dashboard.
24
+
25
+ ---
26
+
27
+ ### 2. Resource ID (Already Fetched)
28
+
29
+ For the Management API:
30
+
31
+ ```
32
+ 5b619b87f9c52e055aeef4ed
33
+ ```
34
+
35
+ ---
36
+
37
+ ### 3. Update Resource Server Configuration
38
+
39
+ Use the resource ID in the following PATCH request:
40
+
41
+ ```bash
42
+ curl --request PATCH \
43
+ --url "https://dev-cdebase.auth0.com/api/v2/resource-servers/<Resource-key>" \
44
+ --header "authorization: Bearer YOUR_MANAGEMENT_API_TOKEN" \
45
+ --header "content-type: application/json" \
46
+ --data '{
47
+ "skip_consent_for_verifiable_first_party_clients": true
48
+ }'
49
+ ```
50
+
51
+ ---
52
+
53
+ ### Behavior
54
+
55
+ - `true` → Disables the consent screen
56
+ - `false` → Enables the consent screen
57
+
58
+ ---
59
+
60
+ #### Git Issue: https://github.com/CDEBase/adminIde-stack/issues/3237
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdmbase/wiki-browser",
3
- "version": "12.0.18-alpha.50",
3
+ "version": "12.0.18-alpha.51",
4
4
  "description": "Sample core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -65,7 +65,7 @@
65
65
  }
66
66
  ]
67
67
  },
68
- "gitHead": "ad35818a795169e2e81e6ff6a1248098befbe459",
68
+ "gitHead": "55e89c547df3064129c6524580500fc09862b965",
69
69
  "typescript": {
70
70
  "definition": "lib/index.d.ts"
71
71
  }