From 0ff4ff5f2484082fc84b56c9ab13b7017b44b98d Mon Sep 17 00:00:00 2001 From: Maurizio Vitale Date: Tue, 20 Jun 2017 19:16:51 +0100 Subject: [PATCH] [ADF-883] Fix build errors (#1992) --- .../ng2-alfresco-userinfo/src/models/ecm-user.model.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ng2-components/ng2-alfresco-userinfo/src/models/ecm-user.model.ts b/ng2-components/ng2-alfresco-userinfo/src/models/ecm-user.model.ts index 6bac0b5b77..57941444e0 100644 --- a/ng2-components/ng2-alfresco-userinfo/src/models/ecm-user.model.ts +++ b/ng2-components/ng2-alfresco-userinfo/src/models/ecm-user.model.ts @@ -16,8 +16,9 @@ */ import { EcmCompanyModel } from './ecm-company.model'; +import { Person } from 'alfresco-js-api'; -export class EcmUserModel { +export class EcmUserModel implements Person { id: string; firstName: string; lastName: string; @@ -33,7 +34,7 @@ export class EcmUserModel { company: EcmCompanyModel; mobile: string; telephone: string; - statusUpdatedAt: string; + statusUpdatedAt: Date; userStatus: string; enabled: boolean; emailNotificationsEnabled: boolean;