### feat: verbessere DTO-Handling und füge Feature-Flag hinzu

- **NennungViewModel:** Definiere lokales `NennungDto` zur Optimierung der Backend-Response-Verarbeitung.
- **MailPollingService:** Ergänze Bedingung für Scheduler-Aktivierung (`ConditionalOnProperty`).
- **.env & application.yaml:** Füge `MAIL_POLLING_ENABLED` als Feature-Flag hinzu.
- **Dependencies:** Refaktor Import-Reihenfolge für Konsistenz.
This commit is contained in:
2026-04-22 20:26:59 +02:00
parent 8b44edda90
commit 309834d90c
5 changed files with 34 additions and 5 deletions
@@ -44,3 +44,8 @@ management:
web:
exposure:
include: "health,info,prometheus"
# Feature-Flags
mail:
polling:
enabled: ${MAIL_POLLING_ENABLED:false}