added bulk updates to data controller

This commit is contained in:
dswbx
2025-02-26 18:04:07 +01:00
parent 4d75cfe0ea
commit 4a2dbf8f79
9 changed files with 285 additions and 240 deletions

View File

@@ -13,7 +13,7 @@ import type { Context, Hono } from "hono";
import { deleteCookie, getSignedCookie, setSignedCookie } from "hono/cookie";
import { sign, verify } from "hono/jwt";
import type { CookieOptions } from "hono/utils/cookie";
import type { ServerEnv } from "modules/Module";
import type { ServerEnv } from "modules/Controller";
type Input = any; // workaround
export type JWTPayload = Parameters<typeof sign>[0];