aboutsummaryrefslogtreecommitdiff
path: root/docs/admin_handbook.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/admin_handbook.md')
-rw-r--r--docs/admin_handbook.md18
1 files changed, 15 insertions, 3 deletions
diff --git a/docs/admin_handbook.md b/docs/admin_handbook.md
index 92f8d20..702a049 100644
--- a/docs/admin_handbook.md
+++ b/docs/admin_handbook.md
@@ -47,6 +47,18 @@ Using the same database for different versions of CCASS is currently unsupported
## Microsoft Entra ID setup
-```json
-
-```
+A Web redirect URL is needed and must be set to `/auth` from the base of the accessible URL. “ID tokens” must be selected. The following optional claims must be configured:
+* `email`
+* `family_name`
+* `given_name`
+* `preferred_username`
+* `groups` (ID tokens must be configured to receive Group IDs)
+
+The application needs the following delegated permissions:
+* `email`
+* `offline_access`
+* `openid`
+* `profile`
+* `User.Read`
+
+[An example manifest](./azure.json) is available.