[#397 bis] added participation management on event from thunderbird (#432)

Co-authored-by: Camille Moussu <cmoussu@linagora.com>
This commit is contained in:
Camille Moussu
2026-01-07 11:45:17 +01:00
committed by GitHub
parent e59d878e6c
commit 9ff75056c7
47 changed files with 550 additions and 366 deletions
+12
View File
@@ -0,0 +1,12 @@
export function buildFamilyName(
firstName: string | undefined,
lastName: string | undefined,
email: string
): string {
const trimmedFirstName = firstName?.trim() || "";
const trimmedLastName = lastName?.trim() || "";
const fullName = [trimmedFirstName, trimmedLastName]
.filter(Boolean)
.join(" ");
return fullName || email;
}
+1 -1
View File
@@ -1,5 +1,5 @@
import { RepetitionObject } from "../features/Events/EventsTypes";
import { userAttendee } from "../features/User/userDataTypes";
import { userAttendee } from "../features/User/models/attendee";
export interface EventFormTempData {
// Form fields