Skip to content

Commit fbc5977

Browse files
fix query
1 parent c84ac31 commit fbc5977

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/pages/identity/administration/deleted-items/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Page = () => {
77
const actions = [
88
{
99
label: "Restore Object",
10-
type: "POST",
10+
type: "GET",
1111
url: "/api/ExecRestoreDeleted",
1212
data: { TenantFilter: "Tenant", ID: "id" },
1313
confirmText: "Are you sure you want to restore this user?",
@@ -46,7 +46,6 @@ const Page = () => {
4646
<CippTablePage
4747
title={pageTitle}
4848
apiUrl="/api/ListDeletedItems"
49-
apiDataKey="Results"
5049
actions={actions}
5150
offCanvas={offCanvas}
5251
simpleColumns={columns}

src/pages/identity/administration/risky-users/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Page = () => {
99
const actions = [
1010
{
1111
label: "Dismiss Risk",
12-
type: "POST",
12+
type: "GET",
1313
icon: <Clear />,
1414
url: "/api/ExecDismissRiskyUser",
1515
data: { userId: "id", userDisplayName: "userDisplayName" },

0 commit comments

Comments
 (0)