Skip to content

Commit

Permalink
Merge pull request #5196 from NikCharlebois/AADApplication-Fixes
Browse files Browse the repository at this point in the history
AADApplication: Fixes for Permissions
  • Loading branch information
NikCharlebois authored Oct 16, 2024
2 parents a9fef9b + 83005c5 commit 327aeb6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

# UNRELEASED

* IntuneDerivedCredential
* Initial release.
* AADAdminConsentRequestPolicy
* Initial release.
* AADApplication
* Fixed an issue trying to retrieve the beta instance.
* Added support for OnPremisesPublishing.
* Added support for ApplicationTemplate.
* Fixes an issue where trying to apply permissions complained about
duplicate entries.
* AADAuthenticationRequirement
* Initial release.
* AADConnectorGroupApplicationProxy
Expand Down Expand Up @@ -38,6 +38,8 @@
* IntuneAppAndBrowserIsolationPolicyWindows10
* Initial release.
FIXES [#3028](https://github.com/microsoft/Microsoft365DSC/issues/3028)
* IntuneDerivedCredential
* Initial release.
* IntuneDeviceConfigurationIdentityProtectionPolicyWindows10
* Added deprecation notice.
* IntuneEndpointDetectionAndResponsePolicyWindows10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ function Set-TargetResource
if ($needToUpdatePermissions -and -not [System.String]::IsNullOrEmpty($Permissions) -and $Permissions.Length -gt 0)
{
Write-Verbose -Message "Will update permissions for Azure AD Application {$($currentAADApp.DisplayName)}"
$allSourceAPIs = $Permissions.SourceAPI | Get-Unique
$allSourceAPIs = $Permissions.SourceAPI | Select-Object -Unique
$allRequiredAccess = @()

foreach ($sourceAPI in $allSourceAPIs)
Expand Down

0 comments on commit 327aeb6

Please sign in to comment.