diff --git a/projects/common/src/fm/models/user.ts b/projects/common/src/fm/models/user.ts index e7c8144..a0832a4 100644 --- a/projects/common/src/fm/models/user.ts +++ b/projects/common/src/fm/models/user.ts @@ -13,4 +13,5 @@ export interface IUser { mobile?: string; organisation?: string; cocNumber?: string; + searchable: boolean; } \ No newline at end of file diff --git a/projects/common/src/fm/reducers/app-common.reducer.ts b/projects/common/src/fm/reducers/app-common.reducer.ts index 454150c..b554b5c 100644 --- a/projects/common/src/fm/reducers/app-common.reducer.ts +++ b/projects/common/src/fm/reducers/app-common.reducer.ts @@ -58,7 +58,8 @@ export function reducer(state = initialState, action: appCommonActions.Actions ) code:a.user.code, email:a.userinfo["email"], name:a.userinfo["name"], - claims:claims + claims:claims, + searchable: false }; return tassign(state, { user: user }); }