From b7da4f335b3d45009e7db62d5d5e579ec3278758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 4 Dec 2024 10:26:19 +0100 Subject: [PATCH] Fix site scopes --- src/lib/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 54d6ee7c9..46445e60d 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -120,8 +120,8 @@ export const defaultScopes: string[] = [ 'topics.write', 'billing.read', 'billing.write', - 'sites:read', - 'sites:write' + 'sites.read', + 'sites.write' ]; export const defaultRoles: string[] = ['owner'];