From 90a8d33f7c17c802730fd9b978db0e32d28a7dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Nicole?= Date: Sun, 6 May 2018 17:42:37 +0200 Subject: Implement Todo entity type Summary: Some notes: - Needed to specialize some flatbuffers related functions for serializing QStringList and int - Removed useless qWarnings in caldav test - Rename EventSynchronizer -> CalDAVSynchronizer since it also synchronizes Calendars and Todos (and more to come!) Reviewers: cmollekopf Tags: #sink Differential Revision: https://phabricator.kde.org/D12695 --- common/domain/todo.fbs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 common/domain/todo.fbs (limited to 'common/domain/todo.fbs') diff --git a/common/domain/todo.fbs b/common/domain/todo.fbs new file mode 100644 index 0000000..b448cae --- /dev/null +++ b/common/domain/todo.fbs @@ -0,0 +1,18 @@ +namespace Sink.ApplicationDomain.Buffer; + +table Todo { + uid:string; + summary:string; + description:string; + completedDate:string; + dueDate:string; + startDate:string; + status:string; + priority:int; + categories:[string]; + ical:string; + calendar:string; +} + +root_type Todo; +file_identifier "AKFB"; -- cgit v1.2.3