From 5449204e033aff89589253940009a0f27b610a95 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Tue, 24 Jan 2017 22:31:38 +0200 Subject: [PATCH] Step 12.5: Added picture message type --- imports/models.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/imports/models.ts b/imports/models.ts index 9a7678d..2a3ad9c 100644 --- a/imports/models.ts +++ b/imports/models.ts @@ -9,7 +9,8 @@ export interface Profile { export enum MessageType { TEXT = 'text', - LOCATION = 'location' + LOCATION = 'location', + PICTURE = 'picture' } export interface Chat {