fix(core): Restrict data store access to authorized projects (no-changelog) (#18342)

This commit is contained in:
Jaakko Husso
2025-08-14 15:56:44 +03:00
committed by GitHub
parent 8442382471
commit 7fefd54edf
9 changed files with 746 additions and 257 deletions

View File

@@ -79,13 +79,6 @@ export const GLOBAL_OWNER_SCOPES: Scope[] = [
'insights:list',
'folder:move',
'oidc:manage',
'dataStore:create',
'dataStore:delete',
'dataStore:read',
'dataStore:update',
'dataStore:list',
'dataStore:readRow',
'dataStore:writeRow',
];
export const GLOBAL_ADMIN_SCOPES = GLOBAL_OWNER_SCOPES.concat();
@@ -105,7 +98,4 @@ export const GLOBAL_MEMBER_SCOPES: Scope[] = [
'user:list',
'variable:list',
'variable:read',
'dataStore:read',
'dataStore:list',
'dataStore:readRow',
];