Skip to content

Commit

Permalink
Merge pull request #5577 from NikCharlebois/Fixes-5573
Browse files Browse the repository at this point in the history
Fixes #5573
  • Loading branch information
NikCharlebois authored Dec 18, 2024
2 parents b223307 + e081041 commit 43c8d17
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* Added support for Oauth2PermissionScopes.
* Fixes comparison issue for permissions.
* TeamsMeetingPolicy
* Adds support for additional Copilot setting value.
* FIXES [#5573](https://github.com/microsoft/Microsoft365DSC/issues/5573)
* FIXES [#5550](https://github.com/microsoft/Microsoft365DSC/issues/5550)
* MISC
* Fixed the Fabric web request to use basic parsing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ function Get-TargetResource
$ContentSharingInExternalMeetings,

[Parameter()]
[ValidateSet('Enabled', 'EnabledWithTranscript')]
[ValidateSet('Disabled', 'Enabled', 'EnabledWithTranscript', 'EnabledWithTranscriptDefaultOn')]
[System.String]
$Copilot,

Expand Down Expand Up @@ -690,7 +690,7 @@ function Set-TargetResource
$ContentSharingInExternalMeetings,

[Parameter()]
[ValidateSet('Enabled', 'EnabledWithTranscript')]
[ValidateSet('Disabled', 'Enabled', 'EnabledWithTranscript', 'EnabledWithTranscriptDefaultOn')]
[System.String]
$Copilot,

Expand Down Expand Up @@ -1138,7 +1138,7 @@ function Test-TargetResource
$ContentSharingInExternalMeetings,

[Parameter()]
[ValidateSet('Enabled', 'EnabledWithTranscript')]
[ValidateSet('Disabled', 'Enabled', 'EnabledWithTranscript', 'EnabledWithTranscriptDefaultOn')]
[System.String]
$Copilot,

Expand Down
Binary file not shown.

0 comments on commit 43c8d17

Please sign in to comment.