feat: enhance employee and symbol management with new features, improved UI components, and backend schema updates

This commit is contained in:
2025-10-26 22:21:53 -03:00
parent 5dd00b63e1
commit 2c2b792b4a
48 changed files with 9513 additions and 672 deletions

View File

@@ -0,0 +1,9 @@
import type { Handle } from "@sveltejs/kit";
// Middleware desabilitado - proteção de rotas feita no lado do cliente
// para compatibilidade com localStorage do authStore
export const handle: Handle = async ({ event, resolve }) => {
return resolve(event);
};