Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jun 12, 2023
1 parent 6ff2c6a commit f493a72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
* AADNamedLocationPolicy
* Added support forthe CountryLookupMethod property
FIXES [#3345](https://github.com/microsoft/Microsoft365DSC/issues/3345)
* TeamsAppPermissionPolicy
* Fixes an issue where the wrong app types were trying to get assigned.
FIXES [#3373](https://github.com/microsoft/Microsoft365DSC/issues/3373)
* MISC
* Removed dependency on the Az.Accounts module from the Update-M365DSCAzureAdApplication function.
* DEPENDENCIES
* Updated Microsoft.Graph dependencies to version 1.28.0.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,15 +210,15 @@ function Set-TargetResource
{
foreach ($appEntry in $PrivateCatalogApps)
{
$PrivateCatalogAppsValue += [Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp]::New($appEntry)
$PrivateCatalogAppsValue += [Microsoft.Teams.Policy.Administration.Cmdlets.Core.PrivateCatalogApp]::New($appEntry)
}
}
$GlobalCatalogAppsValue = @()
if ($GlobalCatalogApps.Count -gt 0)
{
foreach ($appEntry in $GlobalCatalogApps)
{
$GlobalCatalogAppsValue += [Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp]::New($appEntry)
$GlobalCatalogAppsValue += [Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp]::New($appEntry)
}
}
if ($Ensure -eq 'Present' -and $currentInstance.Ensure -eq 'Absent')
Expand Down

0 comments on commit f493a72

Please sign in to comment.