Skip to content

Commit

Permalink
Merge pull request #4093 from malauter/Fix-4090
Browse files Browse the repository at this point in the history
TeamsMeetingPolicy: Allow -1 for NewMeetingRecordingExpirationDays parameter (never expire)
  • Loading branch information
NikCharlebois authored Dec 29, 2023
2 parents 367c906 + c45c006 commit 698f7dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
* SPOTenantSettings
* Fix bug for DisabledWebPartIds type, should be an array instead of a string
FIXES [#4086](https://github.com/microsoft/Microsoft365DSC/issues/4086)
* TeamsMeetingPolicy
* Allow -1 for NewMeetingRecordingExpirationDays parameter (never expire)
FIXES [#4090](https://github.com/microsoft/Microsoft365DSC/issues/4090)
* TeamsMessagingPolicy
* Added support for property 'AllowVideoMessages'
FIXES [#4021](https://github.com/microsoft/Microsoft365DSC/issues/4021)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ function Get-TargetResource
$MeetingInviteLanguages,

[Parameter()]
[System.UInt32]
[System.Int32]
[ValidateRange(-1, 99999)]
$NewMeetingRecordingExpirationDays,

Expand Down Expand Up @@ -635,7 +635,7 @@ function Set-TargetResource
$MeetingInviteLanguages,

[Parameter()]
[System.UInt32]
[System.Int32]
[ValidateRange(-1, 99999)]
$NewMeetingRecordingExpirationDays,

Expand Down Expand Up @@ -1003,7 +1003,7 @@ function Test-TargetResource
$MeetingInviteLanguages,

[Parameter()]
[System.UInt32]
[System.Int32]
[ValidateRange(-1, 99999)]
$NewMeetingRecordingExpirationDays,

Expand Down
Binary file not shown.

0 comments on commit 698f7dd

Please sign in to comment.