From 47afa20a01ea6ad16fb60ff54424ecf01c89edc0 Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Thu, 8 Feb 2024 18:17:42 +0100 Subject: [PATCH] Add firstname and lastname --- projects/common/src/fm/reducers/app-common.reducer.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/common/src/fm/reducers/app-common.reducer.ts b/projects/common/src/fm/reducers/app-common.reducer.ts index b34fda6..d28cb9a 100644 --- a/projects/common/src/fm/reducers/app-common.reducer.ts +++ b/projects/common/src/fm/reducers/app-common.reducer.ts @@ -64,6 +64,8 @@ export function reducer(state = initialState, action: appCommonActions.Actions ) code:a.user.code, email:claims["email"]!== undefined ? claims["email"] : a.user.name, name:claims["name"]!== undefined?claims["name"] : a.user.email, + lastName:a.user.lastName, + firstName:a.user.firstName, claims:claims, searchable: false };