Files
drop/server/api/v1/admin/token/acls.get.ts
2025-09-20 11:21:53 +10:00

10 lines
377 B
TypeScript

import aclManager from "~~/server/internal/acls";
import { systemACLDescriptions } from "~~/server/internal/acls/descriptions";
export default defineEventHandler(async (h3) => {
const allowed = await aclManager.allowSystemACL(h3, []); // No ACLs only allows session authentication
if (!allowed) throw createError({ statusCode: 403 });
return systemACLDescriptions;
});