Adding prestyled base tags and testing admin dashboard

This commit is contained in:
2024-11-04 16:34:11 +01:00
parent 633231f821
commit 0105a6aaea
36 changed files with 643 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
export default defineEventHandler(async (e) => {
const id = getRouterParam(e, 'id');
if(!id)
{
setResponseStatus(e, 400);
return;
}
return await runTask(id);
});