feat(lyra): admin DiGA-reminder post category

New 'erinnerung' topic for manual Lyra community posts that gently remind
users they can add optional, anonymous profile details. Wording stays
jargon-free (no 'DiGA'/'data'/'study'). Manual-only, not in the auto-cron
catalog.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
chahinebrini 2026-06-07 00:11:01 +02:00
parent b757486579
commit 6a3c1e13da
2 changed files with 4 additions and 0 deletions

View File

@ -194,6 +194,7 @@ const lyraTopics = [
{ value: "witzig", label: "Witzig", emoji: "😄" },
{ value: "news", label: "News/Warnung", emoji: "⚠️" },
{ value: "feature", label: "Feature", emoji: "✨" },
{ value: "erinnerung", label: "DiGA-Erinnerung", emoji: "🙋" },
] as const;
const author = ref<"lyra" | "rebreak">("lyra");

View File

@ -7,6 +7,7 @@ export const LYRA_TOPICS = [
"witzig",
"news",
"feature",
"erinnerung",
] as const;
export type LyraTopic = (typeof LYRA_TOPICS)[number];
@ -22,6 +23,8 @@ export const TOPIC_HINTS: Record<LyraTopic, string> = {
news: "Beschreibe kurz eine typische Taktik der Glücksspielindustrie (z.B. Push-Notifications, Bonusangebote) sachlich und als Warnung formuliert.",
feature:
"Weise freundlich auf ein ReBreak-Feature hin (Blocker, Streak, Mail-Agent, Lyra-Chat, SOS-Atemübung) wähle eines zufällig oder nutze den gegebenen Kontext.",
erinnerung:
"Erinnere die Community freundlich und ganz ohne Druck daran, dass sie im Profil ein paar freiwillige Angaben zu sich machen können (z.B. Geburtsjahr). Erkläre in einem Satz, dass das hilft, ReBreak weiterzuentwickeln und als ernsthafte Unterstützung für mehr Menschen zu etablieren. Betone deutlich: völlig freiwillig, bleibt anonym, jederzeit änderbar. Verwende NICHT die Wörter 'DiGA', 'Daten sammeln', 'Studie' oder 'Statistik'.",
};
type Lang = "de" | "en" | "fr" | "ar";