From b9085de53388cffc12c325653f05eeb16c7dc526 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Thu, 10 Oct 2024 15:43:21 +0200 Subject: [PATCH] Remove unused `IS_OWNER` constant (#1823) ## Changes Leftover from #1386. ## Tests All tests pass (indicating it really wasn't used). --- bundle/permissions/mutator.go | 1 - 1 file changed, 1 deletion(-) diff --git a/bundle/permissions/mutator.go b/bundle/permissions/mutator.go index 247ffcda..7787bc04 100644 --- a/bundle/permissions/mutator.go +++ b/bundle/permissions/mutator.go @@ -13,7 +13,6 @@ import ( const CAN_MANAGE = "CAN_MANAGE" const CAN_VIEW = "CAN_VIEW" const CAN_RUN = "CAN_RUN" -const IS_OWNER = "IS_OWNER" var allowedLevels = []string{CAN_MANAGE, CAN_VIEW, CAN_RUN} var levelsMap = map[string](map[string]string){