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
16 lines
515 B
TypeScript
16 lines
515 B
TypeScript
import { APITokenMode } from "~/prisma/client/enums";
|
|
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, []); // No ACLs only allows session authentication
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const tokens = await prisma.aPIToken.findMany({
|
|
where: { mode: APITokenMode.System },
|
|
omit: { token: true },
|
|
});
|
|
|
|
return tokens;
|
|
});
|