Skip to content

Commit bf8d384

Browse files
authored
Merge pull request #4527 from fthorild/fix-siteid
Added SiteId to the model since it was missing
2 parents 3e9c943 + 389a19b commit bf8d384

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
3131
- Added `-ExcludeDeprecated` to `Export-PnpTaxonomy` which allows for deprecated terms to be excluded from the export [#4053](https://github.com/pnp/powershell/pull/4053)
3232
- Added `-HidePeoplePreviewingFiles` to `Set-PnPSite` which allows for hiding the people previewing files feature on a site [#4416](https://github.com/pnp/powershell/pull/4416)
3333
- Added `-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled` to `Set-PnPTenant` which allows for updating of web property bag when DenyAddAndCustomizePages is enabled [#4508](https://github.com/pnp/powershell/pull/4508)
34+
- Added `SiteId` to the output of `Get-PnPTenantSite` [#4527](https://github.com/pnp/powershell/pull/4527)
3435

3536
### Changed
3637

@@ -78,6 +79,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
7879

7980
### Contributors
8081

82+
- Fredrik Thorild [fthorild]
8183
- San [sankarkumar23]
8284
- Christian Veenhuis [ChVeen]
8385
- Nishkalank Bezawada [NishkalankBezawada]

src/Commands/Model/SPOSite.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public class SPOSite
5959
public Microsoft.Online.SharePoint.TenantManagement.SharingDomainRestrictionModes SharingDomainRestrictionMode { get; set; }
6060
public bool ShowPeoplePickerSuggestionsForGuestUsers { get; set; }
6161
public Microsoft.Online.SharePoint.TenantManagement.SharingCapabilities SiteDefinedSharingCapability { get; set; }
62+
public Guid SiteId { get; set; }
6263
public bool SocialBarOnSitePagesDisabled { get; set; }
6364
public string Status { get; set; }
6465
public long StorageQuota { get; set; }
@@ -157,6 +158,7 @@ public SPOSite(SiteProperties props, bool? disableSharingForNonOwnersStatus)
157158
SharingDomainRestrictionMode = props.SharingDomainRestrictionMode;
158159
ShowPeoplePickerSuggestionsForGuestUsers = props.ShowPeoplePickerSuggestionsForGuestUsers;
159160
SiteDefinedSharingCapability = props.SiteDefinedSharingCapability;
161+
SiteId = props.SiteId;
160162
SocialBarOnSitePagesDisabled = props.SocialBarOnSitePagesDisabled;
161163
Status = props.Status;
162164
StorageQuota = props.StorageMaximumLevel;

0 commit comments

Comments
 (0)