Added minimal permission for 'graph openextension' commands. Closes #6980#7007
Open
Added minimal permission for 'graph openextension' commands. Closes #6980#7007
Conversation
There was a problem hiding this comment.
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 |
Member
|
Thank you for opening the PR 👏👏👏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added minimal permission for
graph openextensioncommands. Closes #6980