From 717b297bd1231040b6496dcebb830bac8e111f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 2 Jul 2026 10:56:08 +0200 Subject: [PATCH] Add Last contact app to onboarding v2 installable apps (#22433) Adds the Last contact app to the list of installable apps shown in the onboarding v2 install-apps step, alongside Call recorder and Enrichment. Wired in both the frontend list (label + description) and the backend reward/install allow-list so it can be selected, installed server-side, and credited. Review in cubic --- .../onboarding/constants/OnboardingInstallableApps.ts | 5 +++++ .../onboarding-installable-app-universal-identifiers.ts | 1 + 2 files changed, 6 insertions(+) diff --git a/packages/twenty-front/src/modules/onboarding/constants/OnboardingInstallableApps.ts b/packages/twenty-front/src/modules/onboarding/constants/OnboardingInstallableApps.ts index 91d86f5a45..e84adfea34 100644 --- a/packages/twenty-front/src/modules/onboarding/constants/OnboardingInstallableApps.ts +++ b/packages/twenty-front/src/modules/onboarding/constants/OnboardingInstallableApps.ts @@ -12,4 +12,9 @@ export const ONBOARDING_INSTALLABLE_APPS: OnboardingInstallableApp[] = [ label: msg`Enrichment`, description: msg`Enrich your leads with People Data Labs`, }, + { + universalIdentifier: '66a504cc-0a75-410e-a43f-cdeae1db1522', + label: msg`Last contact`, + description: msg`Get last contact date with relations`, + }, ]; diff --git a/packages/twenty-server/src/engine/core-modules/onboarding/constants/onboarding-installable-app-universal-identifiers.ts b/packages/twenty-server/src/engine/core-modules/onboarding/constants/onboarding-installable-app-universal-identifiers.ts index 73ce42c6ae..ecaa42613c 100644 --- a/packages/twenty-server/src/engine/core-modules/onboarding/constants/onboarding-installable-app-universal-identifiers.ts +++ b/packages/twenty-server/src/engine/core-modules/onboarding/constants/onboarding-installable-app-universal-identifiers.ts @@ -1,4 +1,5 @@ export const ONBOARDING_INSTALLABLE_APP_UNIVERSAL_IDENTIFIERS = [ '8da4b8b5-5edf-4880-b51f-ab6e679ec617', '4a1178c1-3535-4a47-b592-231d3216b36f', + '66a504cc-0a75-410e-a43f-cdeae1db1522', ];