Template
1
0
Files
boilerplate/modules/workspace/cerbos/resources.ts
2025-09-24 01:20:09 +02:00

23 lines
344 B
TypeScript

import z from "zod";
/*
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;
*/