-
Notifications
You must be signed in to change notification settings - Fork 362
Added minimal permission for 'entra group member' commands. Closes #6936 #6995
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 minimal permission documentation to the four entra group member
commands, addressing issue #6936. The changes provide clear guidance on the required Microsoft Graph permissions for both delegated and application authentication scenarios.
- Added permissions documentation sections to all four group member commands
- Specified appropriate read/write permissions based on command functionality
- Used consistent tabbed formatting for delegated vs application permissions
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
File | Description |
---|---|
group-member-add.mdx | Added permissions section with GroupMember.ReadWrite.All for both delegated and application scenarios |
group-member-list.mdx | Added permissions section with GroupMember.Read.All for both delegated and application scenarios |
group-member-remove.mdx | Added permissions section with GroupMember.ReadWrite.All for both delegated and application scenarios |
group-member-set.mdx | Added permissions section with GroupMember.ReadWrite.All for both delegated and application scenarios |
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.
Hi @nanddeepn, thank you for the contribution. Only a few minor notes, great job otherwise.
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.
Great work. Approved.
I will merge it later.
Added minimal permission for
entra group member
commands. Closes #6936