fix: media infinite should be disabled for dropzone in entities

This commit is contained in:
dswbx
2025-04-05 18:01:04 +02:00
parent ca86fa58ac
commit 2c29e06fb8
5 changed files with 37 additions and 21 deletions

View File

@@ -1,6 +1,7 @@
import type { App } from "App";
import { type Context, Hono } from "hono";
import * as middlewares from "modules/middlewares";
import type { SafeUser } from "auth";
export type ServerEnv = {
Variables: {
@@ -10,7 +11,7 @@ export type ServerEnv = {
resolved: boolean;
registered: boolean;
skip: boolean;
user?: { id: any; role?: string; [key: string]: any };
user?: SafeUser;
};
html?: string;
};