Added new feature : display the file/folder and link of a SharingLink object in the permissions reports.
This commit is contained in:
@@ -14,5 +14,10 @@ public record PermissionEntry(
|
||||
string PermissionLevels, // Semicolon-joined role names (Limited Access already removed)
|
||||
string GrantedThrough, // "Direct Permissions" | "SharePoint Group: <name>"
|
||||
string PrincipalType, // "SharePointGroup" | "User" | "External User"
|
||||
bool WasAutoElevated = false // Set to true when site admin was auto-granted to access this entry
|
||||
bool WasAutoElevated = false, // Set to true when site admin was auto-granted to access this entry
|
||||
// Resolved target for Limited Access System Group For Web/List and SharingLinks
|
||||
// groups — populated when GrantedThrough is one of those system groups, null otherwise.
|
||||
string? TargetUrl = null,
|
||||
string? TargetLabel = null,
|
||||
string? SharingLinkType = null // OrganizationEdit | OrganizationView | AnonymousEdit | AnonymousView | etc.
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user