Füge Geburtstags-Widget hinzu und implementiere Geburtstagsladefunktion; erweitere Sichtbarkeitseinstellungen für Geburtstage in Profil und API
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 49s

This commit is contained in:
Torsten Schulz (local)
2026-02-13 17:27:27 +01:00
parent 3d3e22bb1b
commit 6e297c682c
6 changed files with 152 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ export default defineEventHandler(async (event) => {
name: user.name,
email: user.email,
phone: user.phone || '',
visibility: user.visibility || {}
visibility: Object.assign({ showBirthday: true }, (user.visibility || {}))
}
}
} catch (error) {