Skip to content

Commit

Permalink
Merge branch 'Dev' into Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs authored Feb 26, 2025
2 parents 13720d3 + 3edd21d commit d4a1678
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
* PPTenantSettings
* Corrected issue in the resource schema. The description was a multi-line
string, which is not allowed.
* TeamsChannel
* Apply ordering during export.
FIXES [#5829](https://github.com/microsoft/Microsoft365DSC/issues/5829)
* TeamsTeam
* Apply ordering during export.
* TeamsUser
* Apply ordering during export.

# 1.25.219.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ function Export-TargetResource

try
{
$teams = Get-Team -ErrorAction Stop
$teams = Get-Team -ErrorAction Stop | Sort-Object -Property GroupId
$j = 1
$dscContent = ''
Write-Host "`r`n" -NoNewline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ function Export-TargetResource
$organization = $Credential.UserName.Split('@')[1]
}

$teams = Get-Team
$teams = Get-Team | Sort-Object -Property GroupId
$i = 1
$dscContent = ''
Write-Host "`r`n" -NoNewline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ function Export-TargetResource

try
{
[array]$instances = Get-Team
[array]$instances = Get-Team | Sort-Object -Property GroupId
if ($instances.Length -eq 0)
{
Write-Host $Global:M365DSCEmojiGreenCheckMark
Expand Down

0 comments on commit d4a1678

Please sign in to comment.