Skip to content

Commit

Permalink
Merge branch 'dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-cox-nzx authored Jan 22, 2025
2 parents ec2b97e + 322ac0c commit ca15698
Show file tree
Hide file tree
Showing 7 changed files with 1,805 additions and 1,776 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Added `Get/Set/Remove-PnPUserProfilePhoto` cmdlets to download, upload or remove the profile photo of the specified user.
- Added `New/Get/Remove/Update-PnPTodoList` cmdlets to manage Todo lists.
- Added `Get-PnPTenantPronounsSetting` and `Set-PnPTenantPronounsSetting` cmdlets to manage the availability of using pronouns in the organization [#4660](https://github.com/pnp/powershell/pull/4660)
- Added `HidePeopleWhoHaveListsOpen` parameter to `Set-PnPSite` cmdlet to hide people who simultaneously have lists open [#4699](https://github.com/pnp/powershell/pull/4699)

### Changed

Expand Down
8 changes: 4 additions & 4 deletions dependencies.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Updated": "20250118-024346",
"PnPPowerShell": "6921f7b4782664832c99374ce758d7a97c8d11b7",
"PnPFramework": "bdd1005df109cda7cc86e7ed86125c21cc9e360d",
"PnPCore": "40be32db24b02f2b7ef651f0e350a10e823f07bd"
"Updated": "20250122-024505",
"PnPPowerShell": "7323d2359bb9237523d52f7e40062ce01e5a94a6",
"PnPFramework": "812c522d9adb9322db937c413465683e5b5b8214",
"PnPCore": "317449f81705e1491e08828b6841aa093a6ea1d9"
}
27 changes: 23 additions & 4 deletions documentation/Set-PnPSite.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ Sets site collection properties.

### Set Properties
```powershell
Set-PnPSite [-Identity <String>]
[-Classification <String>]
[-DisableFlows]
[-LogoFilePath <String>]
Set-PnPSite
[-Identity <String>]
[-Classification <String>]
[-DisableFlows]
[-LogoFilePath <String>]
[-Sharing <SharingCapabilities>]
[-StorageMaximumLevel <Int64>]
[-StorageWarningLevel <Int64>]
Expand Down Expand Up @@ -49,6 +50,9 @@ Set-PnPSite [-Identity <String>]
[-ListsShowHeaderAndNavigation <Boolean>]
[-RestrictContentOrgWideSearch <Boolean>]
[-CanSyncHubSitePermissions <SwitchParameter>]
[-HidePeoplePreviewingFiles <Boolean>]
[-HidePeopleWhoHaveListsOpen <Boolean>]
[-RestrictedAccessControl <Boolean>]
[-Connection <PnPConnection>]
```

Expand Down Expand Up @@ -326,6 +330,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -HidePeopleWhoHaveListsOpen
Allows hiding of the presence indicators of users simultaneously working in lists.
```yaml
Type: String
Parameter Sets: (All)
Aliases: Url

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Identity
The url of the site collection.
Expand Down
Loading

0 comments on commit ca15698

Please sign in to comment.