Template
1
0
Files
boilerplate/modules/workspace/cerbos/resources.ts
2025-09-25 14:29:15 +02:00

21 lines
322 B
TypeScript

/*
export const resources = new ResourceRegistry([
{
kind: "workspace",
actions: [],
attr: {
workspaceId: z.string(),
},
},
{
kind: "workspace_user",
actions: [],
attr: {
workspaceId: z.string(),
},
},
] as const);
export type Resource = typeof resources.$resource;
*/