Added minimal permission for 'spo applicationcustomizer' commands. Closes #7264#7388
Open
nanddeepn wants to merge 1 commit into
Open
Added minimal permission for 'spo applicationcustomizer' commands. Closes #7264#7388nanddeepn wants to merge 1 commit into
nanddeepn wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a standardized Permissions section to SharePoint Online Application Customizer command docs, using tabbed views to distinguish Delegated vs Application permissions.
Changes:
- Added Docusaurus
<Tabs>/<TabItem>-based Permissions sections to applicationcustomizer command pages - Introduced (or relied on) theme component imports to support the new MDX JSX components
- Documented required SharePoint permission scopes per command (read vs full control)
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx | Adds tabbed Permissions section (Delegated/Application) and imports Tabs components |
| docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-remove.mdx | Adds tabbed Permissions section (Delegated/Application) and imports Tabs components |
| docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-list.mdx | Adds tabbed Permissions section (Delegated/Application) for read operations |
| docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-get.mdx | Adds tabbed Permissions section (Delegated/Application) for read operations |
| docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.mdx | Adds tabbed Permissions section (Delegated/Application) and imports Tabs components |
Comment on lines
+44
to
+59
| <Tabs> | ||
| <TabItem value="Delegated"> | ||
|
|
||
| | Resource | Permissions | | ||
| |------------|----------------------| | ||
| | SharePoint | AllSites.FullControl | | ||
|
|
||
| </TabItem> | ||
| <TabItem value="Application"> | ||
|
|
||
| | Resource | Permissions | | ||
| |------------|-----------------------| | ||
| | SharePoint | Sites.FullControl.All | | ||
|
|
||
| </TabItem> | ||
| </Tabs> |
Comment on lines
+29
to
+44
| <Tabs> | ||
| <TabItem value="Delegated"> | ||
|
|
||
| | Resource | Permissions | | ||
| |------------|---------------| | ||
| | SharePoint | AllSites.Read | | ||
|
|
||
| </TabItem> | ||
| <TabItem value="Application"> | ||
|
|
||
| | Resource | Permissions | | ||
| |------------|----------------| | ||
| | SharePoint | Sites.Read.All | | ||
|
|
||
| </TabItem> | ||
| </Tabs> |
Comment on lines
+41
to
+56
| <Tabs> | ||
| <TabItem value="Delegated"> | ||
|
|
||
| | Resource | Permissions | | ||
| |------------|---------------| | ||
| | SharePoint | AllSites.Read | | ||
|
|
||
| </TabItem> | ||
| <TabItem value="Application"> | ||
|
|
||
| | Resource | Permissions | | ||
| |------------|----------------| | ||
| | SharePoint | Sites.Read.All | | ||
|
|
||
| </TabItem> | ||
| </Tabs> |
Contributor
|
Thanks! We'll review it soon! |
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
spo applicationcustomizercommands. Closes #7264