-
Notifications
You must be signed in to change notification settings - Fork 368
Added minimal permission for 'graph openextension' commands. Closes #6980 #7007
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
base: main
Are you sure you want to change the base?
Conversation
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.
Pull Request Overview
This PR adds permission documentation for the graph openextension commands. The changes address issue #6980 by documenting the minimal Microsoft Graph permissions required for each command.
Key changes:
- Added permission tables for read operations (get, list) requiring User.Read, Group.Read.All, and Directory.Read.All
- Added permission tables for write operations (add, set, remove) requiring User.ReadWrite, Group.ReadWrite.All, and Directory.AccessAsUser.All
- Documented both delegated and application permissions for all five commands
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| openextension-add.mdx | Added permissions section for creating open extensions |
| openextension-get.mdx | Added permissions section for retrieving a single open extension |
| openextension-list.mdx | Added permissions section for listing open extensions |
| openextension-remove.mdx | Added permissions section for removing open extensions |
| openextension-set.mdx | Added permissions section for updating open extensions |
|
Thank you for opening the PR 👏👏👏 |
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.
Pull Request Overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated no new comments.
Added minimal permission for
graph openextensioncommands. Closes #6980