Devlog-Löschung: Discord-Delete-Sync + Admin-Button im Webinterface

- MessageDelete-Listener (mit Partials): in Discord gelöschte Devlogs verschwinden
  automatisch aus dem Archiv, inkl. lokaler Bilder
- DELETE /api/devlogs/:id (nur Admin) + ✕-Button auf den Karten (nur für Admin sichtbar)
- Anlass: Test-Post mit Commit-Liste von vor der Prosa-Sperre stand noch im Archiv

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-23 01:16:44 +02:00
co-authored by Claude Opus 4.8
parent bf0eca3546
commit 71d2bb07f1
8 changed files with 97 additions and 12 deletions
+9
View File
@@ -246,6 +246,15 @@ body::after {
padding: .1rem .5rem;
white-space: nowrap;
}
.card-delete {
font-family: var(--mono);
font-size: .7rem;
color: var(--muted2);
background: none; border: 1px solid transparent;
padding: .05rem .4rem;
transition: color .2s, border-color .2s;
}
.card-delete:hover { color: var(--neon2); border-color: rgba(255, 77, 0, .4); }
.card-body { color: var(--text); font-weight: 300; font-size: 1.08rem; }
.card-body p { margin: .55rem 0; }