Skip to content

Commit

Permalink
Merge pull request #4232 from ricmestre/fix4231
Browse files Browse the repository at this point in the history
TeamsMeetingBroadcastPolicy: Fix deletion of resource
  • Loading branch information
NikCharlebois authored Jan 24, 2024
2 parents 6c85271 + 1100398 commit 4b7a886
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Remove the logic path to create a new instance in favor of the update flow.
* AADConditionalAccessPolicy
* Fix issue when not all parameters are specified
FIXES [[#4202](https://github.com/microsoft/Microsoft365DSC/issues/4202)]
FIXES [[#4202](https://github.com/microsoft/Microsoft365DSC/issues/4202)]
* AADCrossTenantAccessPolicy
* Removed the ability to specify a value of Absent for the Ensure property.
* AADCrossTenantAccessPolicyCOnfigurationDefault
Expand All @@ -35,13 +35,16 @@
* Fixed an issue trying to create a new instance when DisplayName is empty.
* SCAutoSensitivityLabelRule
* Correct export indentation, which caused an issue with report conversion to JSON.
FIXES [[#4240](https://github.com/microsoft/Microsoft365DSC/issues/4240)]
FIXES [[#4240](https://github.com/microsoft/Microsoft365DSC/issues/4240)]
* SPOSharingSettings
* Fixed an Issue where the MySiteSharingCapability could be returned as an
empty string instead of a null value from the Get method.
* TeamsEventsPolicy
* Add missing attributes
FIXES [#4242](https://github.com/microsoft/Microsoft365DSC/issues/4242)
* TeamsMeetingBroadcastPolicy
* Fix deletion of resource
FIXES [#4231](https://github.com/microsoft/Microsoft365DSC/issues/4231)
* DEPENDENCIES
* Updated Microsoft.Graph dependencies to version 2.12.0.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function Set-TargetResource
}
elseif ($Ensure -eq 'Absent' -and $currentValues.Ensure -eq 'Present')
{
Remove-CsTeamsMeetingBroadcastPolicy -Identity $Identity -Confirm:$false
Remove-CsTeamsMeetingBroadcastPolicy -Identity $Identity
}
}

Expand Down

0 comments on commit 4b7a886

Please sign in to comment.