RFC - Move Sharepoint Site profile from bundled to optional #14865
Closed
AliveDevil
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Seeing confusion internally, where people see "Sharepoint" and "Sharepoint Site", and immediately start to use the Sharepoint Site-profile.
This is in multiple ways not ideal, as the Site-profile is heavily limited in its practical use, outside of working around Microsoft Graph-behavior.
/sites/sitename
)This path cannot point to anything different than a site.
Sharepoint has following naming schemes, which all are valid, and indistinguishable from a pure analysis view point:
There is no way to differentiate "/Sites/SiteName/SubSite" from "/Sites/SiteName/LibraryName".
To get to the drive content, this would be needed:
/v1.0/sites/tenant.sharepoint.com:/Sites/SiteName/SubSite:/drive
the other
/v1.0/sites/tenant.sharepoint.com:/Sites/SiteName:/drives:/LibraryName
Except, that this request is invalid, as there is no endpoint for
sites/siteid/drives/driveid
Thus the correct order here would be:
/v1.0/sites/tenant.sharepoint.com:/Sites/SiteName:/drives
- find drive where name equals LibraryName/v1.0/drives/<found drive id>
Proposal
Remove the Sharepoint Site-profile out of the default bundled profiles, and make is optional by making it installable through the Profiles-tab and refer to that profile, if all else fails.
// #14867
Beta Was this translation helpful? Give feedback.
All reactions