Skip to content

Commit 1435624

Browse files
Merge pull request KelvinTegelaar#3239 from Ren-Roros-Digital/Quarantine
fix: repair Quarantine Management
2 parents 17a0599 + 14b35c1 commit 1435624

File tree

1 file changed

+4
-7
lines changed
  • src/pages/email/administration/quarantine

1 file changed

+4
-7
lines changed

src/pages/email/administration/quarantine/index.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Layout as DashboardLayout } from "/src/layouts/index.js";
22
import { CippTablePage } from "/src/components/CippComponents/CippTablePage.jsx";
33
import { useEffect, useState } from "react";
4-
import { Dialog, DialogTitle, DialogContent, IconButton, Skeleton } from "@mui/material";
4+
import { Dialog, DialogTitle, DialogContent, IconButton, Skeleton, Typography, CircularProgress } from "@mui/material";
55
import { Block, Close, Done, DoneAll, Subject } from "@mui/icons-material";
66
import { CippMessageViewer } from "/src/components/CippComponents/CippMessageViewer.jsx";
77
import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall";
@@ -96,8 +96,7 @@ const Page = () => {
9696
type: "POST",
9797
url: "/api/ExecQuarantineManagement",
9898
data: {
99-
TenantFilter: "TenantFilter",
100-
ID: "id",
99+
Identity: "Identity",
101100
Type: "Release",
102101
},
103102
confirmText: "Are you sure you want to release this message?",
@@ -108,8 +107,7 @@ const Page = () => {
108107
type: "POST",
109108
url: "/api/ExecQuarantineManagement",
110109
data: {
111-
TenantFilter: "TenantFilter",
112-
ID: "id",
110+
Identity: "Identity",
113111
Type: "Deny",
114112
},
115113
confirmText: "Are you sure you want to deny this message?",
@@ -120,8 +118,7 @@ const Page = () => {
120118
type: "POST",
121119
url: "/api/ExecQuarantineManagement",
122120
data: {
123-
TenantFilter: "TenantFilter",
124-
ID: "id",
121+
Identity: "Identity",
125122
Type: "Release",
126123
AllowSender: true,
127124
},

0 commit comments

Comments
 (0)