From 49c70767b02a3f1c8ea6274d5ec249bd99d2c3e8 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Sun, 19 Nov 2023 14:06:47 +0000 Subject: [PATCH] fix update group to growth --- Model/Models/StatusPageGroup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Models/StatusPageGroup.ts b/Model/Models/StatusPageGroup.ts index e353d89b96b..4839b17017d 100644 --- a/Model/Models/StatusPageGroup.ts +++ b/Model/Models/StatusPageGroup.ts @@ -28,7 +28,7 @@ import { PlanSelect } from 'Common/Types/Billing/SubscriptionPlan'; @TableBillingAccessControl({ create: PlanSelect.Growth, read: PlanSelect.Free, - update: PlanSelect.Free, + update: PlanSelect.Growth, delete: PlanSelect.Free, }) @CanAccessIfCanReadOn('statusPage')