7 Commits

Author SHA1 Message Date
5d8a72b0a5 feat: Add handler validation script to prevent undefined function errors
- Create validate-handlers.js script to check for undefined event handlers
- Add npm run validate:handlers command
- Add prebuild hook to run validation before builds
- Add ESLint no-undef rule to catch undefined references
- Add documentation in scripts/README-validation.md

Prevents issues like 'ReferenceError: handleSaveEditGuestbook is not defined'
by validating all onClick/onChange/onSubmit handlers are defined before use.

The script:
- Scans all React components for event handlers
- Verifies functions are defined in component scope
- Excludes props and imported functions
- Runs automatically before builds
- Can be run manually: npm run validate:handlers
2026-01-22 17:30:22 +02:00
ac4f0620a9 feat: enhance admin user management by integrating Supabase Auth for user creation, updates, and deletions, improving session handling, and refining CSRF protection across admin routes 2026-01-21 20:17:20 +02:00
90ec1c01ae Update package.json 2026-01-18 10:37:47 +02:00
b5bb130901 Update package.json 2026-01-18 10:30:59 +02:00
8c93d67615 Update package.json 2026-01-18 10:24:46 +02:00
d50dc5136c Update package.json 2026-01-18 00:38:43 +02:00
1b0063955a first commit beta.0.0.3.3 2026-01-16 19:04:48 +02:00