We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5006b66 + ee8e3ec commit 602a288Copy full SHA for 602a288
Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Invoke-ListTests.ps1
@@ -85,6 +85,10 @@ function Invoke-ListTests {
85
if ($SecureScoreData) {
86
$TestResultsData | Add-Member -NotePropertyName 'SecureScore' -NotePropertyValue $SecureScoreData -Force
87
}
88
+ $MFAStateData = New-CIPPDbRequest -TenantFilter $TenantFilter -Type 'MFAState'
89
+ if ($MFAStateData) {
90
+ $TestResultsData | Add-Member -NotePropertyName 'MFAState' -NotePropertyValue $MFAStateData -Force
91
+ }
92
93
$StatusCode = [HttpStatusCode]::OK
94
$Body = $TestResultsData
0 commit comments