mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 09:11:21 +10:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import aclManager from "~~/server/internal/acls";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, []);
|
|
if (!allowed) return false;
|
|
return true;
|
|
});
|