From dd43ec42ee6bb3f72c3542709f3b0f4770366b3a Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Mon, 28 Jan 2019 21:37:25 +0200 Subject: [PATCH] Add end_time field to Event model --- src/models/Event.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/Event.ts b/src/models/Event.ts index c3a1365..7ac9bcd 100644 --- a/src/models/Event.ts +++ b/src/models/Event.ts @@ -7,6 +7,7 @@ export interface Event { title: string; description: string; start_time: string; + end_time: string; } export async function getEvents(): Promise {