feat: lots of stuff

This commit is contained in:
Morten Olsen
2025-10-16 00:23:18 +02:00
parent 521ffd395f
commit 8e594d59fd
30 changed files with 1739 additions and 31 deletions

View File

@@ -0,0 +1,25 @@
import type { Statement } from '#root/access/access.schemas.ts';
const statements = {
all: [
{
effect: 'allow',
resources: ['**'],
actions: ['**'],
},
],
noRead: [
{
effect: 'allow',
resources: ['**'],
actions: ['**'],
},
{
effect: 'disallow',
resources: ['**'],
actions: ['mqtt:read'],
},
],
} satisfies Record<string, Statement[]>;
export { statements };