Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#3239 from Ren-Roros-Digital/Quarantine
Browse files Browse the repository at this point in the history
fix: repair Quarantine Management
  • Loading branch information
KelvinTegelaar authored Jan 14, 2025
2 parents 17a0599 + 14b35c1 commit 1435624
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/pages/email/administration/quarantine/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Layout as DashboardLayout } from "/src/layouts/index.js";
import { CippTablePage } from "/src/components/CippComponents/CippTablePage.jsx";
import { useEffect, useState } from "react";
import { Dialog, DialogTitle, DialogContent, IconButton, Skeleton } from "@mui/material";
import { Dialog, DialogTitle, DialogContent, IconButton, Skeleton, Typography, CircularProgress } from "@mui/material";
import { Block, Close, Done, DoneAll, Subject } from "@mui/icons-material";
import { CippMessageViewer } from "/src/components/CippComponents/CippMessageViewer.jsx";
import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall";
Expand Down Expand Up @@ -96,8 +96,7 @@ const Page = () => {
type: "POST",
url: "/api/ExecQuarantineManagement",
data: {
TenantFilter: "TenantFilter",
ID: "id",
Identity: "Identity",
Type: "Release",
},
confirmText: "Are you sure you want to release this message?",
Expand All @@ -108,8 +107,7 @@ const Page = () => {
type: "POST",
url: "/api/ExecQuarantineManagement",
data: {
TenantFilter: "TenantFilter",
ID: "id",
Identity: "Identity",
Type: "Deny",
},
confirmText: "Are you sure you want to deny this message?",
Expand All @@ -120,8 +118,7 @@ const Page = () => {
type: "POST",
url: "/api/ExecQuarantineManagement",
data: {
TenantFilter: "TenantFilter",
ID: "id",
Identity: "Identity",
Type: "Release",
AllowSender: true,
},
Expand Down

0 comments on commit 1435624

Please sign in to comment.