mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: small merge fixes * feat: initial setup wizard * fix: last few localization items * fix: lint * fix: bump version
8 lines
208 B
TypeScript
8 lines
208 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;
|
|
});
|