From 426627ac9bf2397aa5bab4faa972da0605910ca1 Mon Sep 17 00:00:00 2001 From: Toni Prieto Date: Fri, 12 Dec 2025 22:12:40 +0100 Subject: [PATCH] Include the missing ADD policy action in the resource policy form (cherry picked from commit 213e6426a99bd3d99944c9abd3c7e72e89ab0b9d) --- .../resource-policies/form/resource-policy-form.model.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/shared/resource-policies/form/resource-policy-form.model.ts b/src/app/shared/resource-policies/form/resource-policy-form.model.ts index 2902f22a2d2..a5ec9dcd43a 100644 --- a/src/app/shared/resource-policies/form/resource-policy-form.model.ts +++ b/src/app/shared/resource-policies/form/resource-policy-form.model.ts @@ -39,6 +39,10 @@ const policyActionList: DynamicFormOptionConfig[] = [ label: ActionType.WRITE.toString(), value: ActionType.WRITE, }, + { + label: ActionType.ADD.toString(), + value: ActionType.ADD, + }, { label: ActionType.REMOVE.toString(), value: ActionType.REMOVE,