Skip to content

Commit 08c922d

Browse files
authored
Deprecated Heal (Drives) functionality (#3186)
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
1 parent 4dd6519 commit 08c922d

File tree

14 files changed

+3
-540
lines changed

14 files changed

+3
-540
lines changed

web-app/src/common/SecureComponent/permissions.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ export const IAM_PAGES = {
173173
TOOLS_AUDITLOGS: "/tools/audit-logs",
174174
TOOLS_TRACE: "/tools/trace",
175175
DASHBOARD: "/tools/metrics",
176-
TOOLS_HEAL: "/tools/heal",
177176
TOOLS_WATCH: "/tools/watch",
178177

179178
/* KMS */
@@ -402,7 +401,6 @@ export const IAM_PAGES_PERMISSIONS = {
402401
IAM_SCOPES.S3_LISTEN_BUCKET_NOTIFICATIONS, // display watch notifications
403402
],
404403
[IAM_PAGES.TOOLS_TRACE]: [IAM_SCOPES.ADMIN_SERVER_TRACE],
405-
[IAM_PAGES.TOOLS_HEAL]: [IAM_SCOPES.ADMIN_HEAL],
406404
[IAM_PAGES.TOOLS_DIAGNOSTICS]: [
407405
IAM_SCOPES.ADMIN_HEALTH_INFO,
408406
IAM_SCOPES.ADMIN_SERVER_INFO,

web-app/src/screens/Console/Console.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ import LoadingComponent from "../../common/LoadingComponent";
5050
import ComponentsScreen from "./Common/ComponentsScreen";
5151

5252
const Trace = React.lazy(() => import("./Trace/Trace"));
53-
const Heal = React.lazy(() => import("./Heal/Heal"));
5453
const Watch = React.lazy(() => import("./Watch/Watch"));
5554
const HealthInfo = React.lazy(() => import("./HealthInfo/HealthInfo"));
5655

@@ -324,10 +323,6 @@ const Console = () => {
324323
component: IDPOpenIDConfigurationDetails,
325324
path: IAM_PAGES.IDP_OPENID_CONFIGURATIONS_VIEW,
326325
},
327-
{
328-
component: Heal,
329-
path: IAM_PAGES.TOOLS_HEAL,
330-
},
331326
{
332327
component: Trace,
333328
path: IAM_PAGES.TOOLS_TRACE,

0 commit comments

Comments
 (0)