Security: Require authentication for home page view

- Add @login_required decorator to home view function
- Ensures all views now require user authentication
- Prevents unauthorized access to homepage and dashboard
- Part of comprehensive authentication security implementation
This commit is contained in:
Stiftung Development
2025-10-11 18:11:43 +02:00
parent f04d93c7f0
commit b9544048e6

View File

@@ -222,7 +222,7 @@ from .forms import (DestinataerForm, DestinataerNotizForm,
FoerderungForm, LandForm, PaechterForm, PersonForm,
UnterstuetzungForm, UnterstuetzungMarkAsPaidForm, VierteljahresNachweisForm)
@login_required
def home(request):
"""Home page for the Stiftungsverwaltung application"""
from stiftung.services.calendar_service import StiftungsKalenderService