From e74938c5d6abf82060d11c2ff663ecc84775ce86 Mon Sep 17 00:00:00 2001 From: Marlene Simondant <msimondant@grandlyon.com> Date: Mon, 17 Mar 2025 09:36:54 +0100 Subject: [PATCH] Update enum --- src/app/profile/dashboard/orientation.enum.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/app/profile/dashboard/orientation.enum.ts b/src/app/profile/dashboard/orientation.enum.ts index 3b4977eb8..72e3a437d 100644 --- a/src/app/profile/dashboard/orientation.enum.ts +++ b/src/app/profile/dashboard/orientation.enum.ts @@ -9,6 +9,11 @@ export const Status = { color: 'blue', icon: 'eye', }, + waiting: { + label: 'En attente', + color: 'blue', + icon: 'eye', + }, completed: { label: 'Terminé', color: 'light-green', @@ -48,6 +53,11 @@ export const Action = { color: 'grey', icon: 'rdvDone', }, + closeRDV: { + label: 'Clôturer le RDV', + color: 'grey', + icon: 'rdvDone', + }, } as const; export type ActionsKey = keyof typeof Action; -- GitLab