From 6f97256c8135893d90bf7a388613a7711aa0a609 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Wed, 25 Jan 2017 00:15:44 +0200 Subject: [PATCH] Step 13.23: Add pictureId property to Profile --- api/server/models.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/api/server/models.ts b/api/server/models.ts index 87d530f6b..f8cc8dc93 100644 --- a/api/server/models.ts +++ b/api/server/models.ts @@ -3,6 +3,7 @@ export const DEFAULT_PICTURE_URL = '/assets/default-profile-pic.svg'; export interface Profile { name?: string; picture?: string; + pictureId?: string; } export enum MessageType {