diff options
author | Rémi Nicole <nicole@kolabsystems.com> | 2018-05-06 17:42:37 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-06 17:52:51 +0200 |
commit | 90a8d33f7c17c802730fd9b978db0e32d28a7dff (patch) | |
tree | d270feeb64815da8de3ffb544b14af362424c279 /common/domain/todo.fbs | |
parent | 3d998856895f0e82a4d0eadd398dafbe1d027e34 (diff) | |
download | sink-90a8d33f7c17c802730fd9b978db0e32d28a7dff.tar.gz sink-90a8d33f7c17c802730fd9b978db0e32d28a7dff.zip |
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
Diffstat (limited to 'common/domain/todo.fbs')
-rw-r--r-- | common/domain/todo.fbs | 18 |
1 files changed, 18 insertions, 0 deletions
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 @@ | |||
1 | namespace Sink.ApplicationDomain.Buffer; | ||
2 | |||
3 | table Todo { | ||
4 | uid:string; | ||
5 | summary:string; | ||
6 | description:string; | ||
7 | completedDate:string; | ||
8 | dueDate:string; | ||
9 | startDate:string; | ||
10 | status:string; | ||
11 | priority:int; | ||
12 | categories:[string]; | ||
13 | ical:string; | ||
14 | calendar:string; | ||
15 | } | ||
16 | |||
17 | root_type Todo; | ||
18 | file_identifier "AKFB"; | ||