Context: In Sprint 63, the identity-discord-secret K8s Secret and source repo manifest were written, but the env block was not reflected in the GitOps repo (aether-gitops), causing Discord notifications to be silently skipped.
Choice: Add DISCORD_FEEDBACK_WEBHOOK_URL secretKeyRef env block to identity-service.yaml in aether-gitops
D2: Add in-app notification when feedback is resolved
Context: Need to notify feedback authors when their feedback is resolved. Existing NotificationService + SSE infrastructure is complete, so no new infrastructure needed.
Choice: Add FEEDBACK_RESOLVED NotificationType + call NotificationService.create() on RESOLVED transition in FeedbackService
Alternatives: Discord DM (not possible via webhook), email (email service not built)
When to Reuse: When attaching supplemental notifications to core business logic (status change). Absorb failures with Promise.catch() to avoid affecting the main flow.