21 lines
322 B
TypeScript
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;
|
|
*/
|