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
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const acls = await aclManager.fetchAllACLs(h3);
|
|
return acls;
|
|
});
|