mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 08:41:17 +01:00
7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const user = await aclManager.getUserACL(h3, ["read"]);
|
|
return user ?? null; // Need to specifically return null
|
|
});
|