From 5c3e4c4d3d033247f75568013f926a0c00f02fc7 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 16 Jan 2025 14:02:21 -0500 Subject: [PATCH] fix devices page --- src/pages/endpoint/reports/devices/index.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pages/endpoint/reports/devices/index.js b/src/pages/endpoint/reports/devices/index.js index 49720d101722..4bce06237a4c 100644 --- a/src/pages/endpoint/reports/devices/index.js +++ b/src/pages/endpoint/reports/devices/index.js @@ -10,7 +10,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "syncDevice", }, @@ -21,7 +20,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "rebootNow", }, @@ -32,7 +30,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "locateDevice", }, @@ -43,7 +40,6 @@ const Page = () => { type: "POST", url: "/api/ExecGetLocalAdminPassword", data: { - TenantFilter: "TenantFilter", GUID: "azureADDeviceId", }, confirmText: "Are you sure you want to retrieve the local admin password?", @@ -53,7 +49,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "RotateLocalAdminPassword", }, @@ -64,7 +59,6 @@ const Page = () => { type: "POST", url: "/api/ExecGetRecoveryKey", data: { - TenantFilter: "TenantFilter", GUID: "azureADDeviceId", }, confirmText: "Are you sure you want to retrieve the Bitlocker keys?", @@ -74,7 +68,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "WindowsDefenderScan", quickScan: false, @@ -86,7 +79,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "WindowsDefenderScan", quickScan: true, @@ -98,7 +90,6 @@ const Page = () => { type: "POST", url: "/api/ExecDeviceAction", data: { - TenantFilter: "TenantFilter", GUID: "id", Action: "windowsDefenderUpdateSignatures", },