From a0828c73fa1492b51eeeba1e392b45a5924d3ed9 Mon Sep 17 00:00:00 2001 From: testa113 Date: Thu, 15 Feb 2024 16:50:45 +1300 Subject: [PATCH] fix(auth): use pure admin [EE-6723] --- app/react/hooks/useAdminOnlyRedirect.ts | 6 +++--- .../DeployView/StackName/StackNameLabelInsight.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/react/hooks/useAdminOnlyRedirect.ts b/app/react/hooks/useAdminOnlyRedirect.ts index fdf787239..eef1158c6 100644 --- a/app/react/hooks/useAdminOnlyRedirect.ts +++ b/app/react/hooks/useAdminOnlyRedirect.ts @@ -18,11 +18,11 @@ export function useAdminOnlyRedirect( ) { const router = useRouter(); - const { isAdmin } = useCurrentUser(); + const { isPureAdmin } = useCurrentUser(); useEffect(() => { - if (!isAdmin) { + if (!isPureAdmin) { router.stateService.go(to, params); } - }, [isAdmin, to, params, router.stateService]); + }, [isPureAdmin, to, params, router.stateService]); } diff --git a/app/react/kubernetes/DeployView/StackName/StackNameLabelInsight.tsx b/app/react/kubernetes/DeployView/StackName/StackNameLabelInsight.tsx index 28cafc9b4..bac747632 100644 --- a/app/react/kubernetes/DeployView/StackName/StackNameLabelInsight.tsx +++ b/app/react/kubernetes/DeployView/StackName/StackNameLabelInsight.tsx @@ -4,12 +4,12 @@ import { InsightsBox } from '@@/InsightsBox'; import { Link } from '@@/Link'; export function StackNameLabelInsight() { - const { isAdmin } = useCurrentUser(); + const { isPureAdmin } = useCurrentUser(); const insightsBoxContent = ( <> The stack field below was previously labelled 'Name' but, in fact, it's always been the stack name (hence the relabelling). - {isAdmin && ( + {isPureAdmin && ( <>
Kubernetes Stacks functionality can be turned off entirely via{' '}