Add table view and split name into firstName/lastName fields
This commit is contained in:
@@ -33,10 +33,12 @@ export default defineEventHandler(async (event) => {
|
||||
// First, add all manual members
|
||||
for (const member of manualMembers) {
|
||||
const normalizedEmail = member.email?.toLowerCase().trim() || ''
|
||||
const normalizedName = member.name?.toLowerCase().trim() || ''
|
||||
const fullName = `${member.firstName || ''} ${member.lastName || ''}`.trim()
|
||||
const normalizedName = fullName.toLowerCase()
|
||||
|
||||
mergedMembers.push({
|
||||
...member,
|
||||
name: fullName, // Computed for display
|
||||
source: 'manual',
|
||||
editable: true,
|
||||
hasLogin: false
|
||||
|
||||
@@ -32,18 +32,19 @@ export default defineEventHandler(async (event) => {
|
||||
}
|
||||
|
||||
const body = await readBody(event)
|
||||
const { id, name, email, phone, address, notes } = body
|
||||
const { id, firstName, lastName, email, phone, address, notes } = body
|
||||
|
||||
if (!name) {
|
||||
if (!firstName || !lastName) {
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
message: 'Name ist erforderlich.'
|
||||
message: 'Vorname und Nachname sind erforderlich.'
|
||||
})
|
||||
}
|
||||
|
||||
await saveMember({
|
||||
id: id || undefined,
|
||||
name,
|
||||
firstName,
|
||||
lastName,
|
||||
email: email || '',
|
||||
phone: phone || '',
|
||||
address: address || '',
|
||||
|
||||
Reference in New Issue
Block a user