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.
1 parent 2ce910b commit c40164cCopy full SHA for c40164c
Modules/CIPPCore/Public/Entrypoints/Invoke-ExecExtensionNinjaOneQueue.ps1
@@ -18,4 +18,13 @@ Function Invoke-ExecExtensionNinjaOneQueue {
18
'SyncTenant' { Invoke-NinjaOneTenantSync -QueueItem $QueueItem }
19
}
20
21
+ $Body = [PSCustomObject]@{
22
+ StatusCode = [HttpStatusCode]::OK
23
+ Body = 'Success'
24
+ }
25
+
26
+ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
27
28
+ Body = $Body
29
+ })
30
0 commit comments