mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: small fixes to request util and version update endpoint * feat: api token creation and management * fix: lint * fix: remove unneeded sidebar component
10 lines
375 B
TypeScript
10 lines
375 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;
|
|
});
|