Implement birthdate input in member profile management. Update API to handle birthdate data for user profiles and enhance visibility settings for birthday display in member lists.
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 1m4s

This commit is contained in:
Torsten Schulz (local)
2026-04-01 11:19:23 +02:00
parent 0fb58af194
commit daabeec33c
5 changed files with 39 additions and 6 deletions

View File

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