Add end_time field to Event model

This commit is contained in:
Jan Tuomi
2019-01-28 21:37:25 +02:00
parent 2e2d21658a
commit dd43ec42ee
+1
View File
@@ -7,6 +7,7 @@ export interface Event {
title: string;
description: string;
start_time: string;
end_time: string;
}
export async function getEvents(): Promise<Event[]> {