-
Notifications
You must be signed in to change notification settings - Fork 50
Weekly Permissions sync 2025-12-13 #1378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10849,6 +10849,81 @@ | |
| "ownerSecurityGroup": "DcsMsGraphSchemaAdmins" | ||
| } | ||
| }, | ||
| "CopilotPackages.Read.All": { | ||
| "authorizationType": "oAuth2", | ||
| "schemes": { | ||
| "DelegatedWork": { | ||
| "adminDisplayName": "Read all packages information", | ||
| "adminDescription": "Allows the user to read the packages information", | ||
| "userDisplayName": "Read all packages information", | ||
| "userDescription": "Allows the app to read packages information.", | ||
| "requiresAdminConsent": false, | ||
| "privilegeLevel": 3 | ||
| }, | ||
| "Application": { | ||
| "adminDisplayName": "Read all packages information", | ||
| "adminDescription": "Allows the app to read packages information without a signed-in user.", | ||
| "requiresAdminConsent": true, | ||
| "privilegeLevel": 4 | ||
| } | ||
| }, | ||
| "pathSets": [ | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "GET" | ||
| ], | ||
| "paths": { | ||
| "/copilot/admin/catalog/packages": "least=DelegatedWork,Application", | ||
| "/copilot/admin/catalog/packages/{packageId}": "least=DelegatedWork,Application" | ||
| } | ||
| } | ||
| ], | ||
| "ownerInfo": { | ||
| "ownerSecurityGroup": "m365adminsvcdevteam" | ||
| } | ||
| }, | ||
| "CopilotPackages.ReadWrite.All": { | ||
| "authorizationType": "oAuth2", | ||
| "schemes": { | ||
| "DelegatedWork": { | ||
| "adminDisplayName": "Read and update all packages information", | ||
| "adminDescription": "Allows the user to read and update the packages information", | ||
|
||
| "userDisplayName": "Read and update all packages information", | ||
| "userDescription": "Allows the app to read and update packages information.", | ||
| "requiresAdminConsent": true, | ||
| "privilegeLevel": 3 | ||
| }, | ||
| "Application": { | ||
| "adminDisplayName": "Read and update all packages information", | ||
| "adminDescription": "Allows the app to read and update packages information without a signed-in user.", | ||
| "requiresAdminConsent": true, | ||
| "privilegeLevel": 4 | ||
| } | ||
| }, | ||
| "pathSets": [ | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "GET", | ||
| "POST" | ||
| ], | ||
|
Comment on lines
+10913
to
+10916
|
||
| "paths": { | ||
| "/copilot/admin/catalog/packages": "least=DelegatedWork,Application", | ||
| "/copilot/admin/catalog/packages/{packageId}": "least=DelegatedWork,Application" | ||
| } | ||
| } | ||
| ], | ||
| "ownerInfo": { | ||
| "ownerSecurityGroup": "m365adminsvcdevteam" | ||
| } | ||
| }, | ||
| "CopilotSettings-LimitedMode.Read": { | ||
| "authorizationType": "oAuth2", | ||
| "schemes": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistency between adminDescription and userDescription: The admin description says "Allows the user to read the packages information" (singular "user"), but the user description says "Allows the app to read packages information." These descriptions should be consistent in their phrasing. Consider updating the adminDescription to match the pattern used in userDescription, for example: "Allows the app to read the packages information on behalf of the signed-in user."