Skip to content

Commit 3c8586f

Browse files
committed
Update Get-CIPPAlertSmtpAuthSuccess.ps1
Remove value from signings
1 parent af2bf4d commit 3c8586f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/CIPPCore/Public/Alerts/Get-CIPPAlertSmtpAuthSuccess.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function Get-CIPPAlertSmtpAuthSuccess {
1919
$SignIns = New-GraphGetRequest -uri $uri -tenantid $TenantFilter
2020

2121
# Select only the properties you care about
22-
$AlertData = $SignIns.value | Select-Object userPrincipalName, createdDateTime, clientAppUsed, ipAddress, @{Name = 'Tenant'; Expression = { $TenantFilter } }
22+
$AlertData = $SignIns | Select-Object userPrincipalName, createdDateTime, clientAppUsed, ipAddress, @{Name = 'Tenant'; Expression = { $TenantFilter } }
2323

2424
# Write results into the alert pipeline
2525
Write-AlertTrace -cmdletName $MyInvocation.MyCommand -tenantFilter $TenantFilter -data $AlertData

0 commit comments

Comments
 (0)