diff options
author | Rémi Nicole <nicole@kolabsystems.com> | 2018-04-11 10:37:57 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-11 10:38:22 +0200 |
commit | edbb4c9c82e34e90ad15ad151901e65c2c2cfb66 (patch) | |
tree | 6b5a9a73c3b6c012f9d7ad4ee03b9ddda61ec367 /common/domain/event.fbs | |
parent | 1d85b3c794b1e9b7c91b9536f79d4b469a2ffcb0 (diff) | |
download | sink-edbb4c9c82e34e90ad15ad151901e65c2c2cfb66.tar.gz sink-edbb4c9c82e34e90ad15ad151901e65c2c2cfb66.zip |
Add EndTime and Ical attributes to Event
Summary:
EndTime is necessary for the implementation of the calendar UI in Kube.
Fixes T8482
Ical to mimic Mail's MimeMessage attribute.
(Sorry for the wait, there was a good number of merge conflicts when rebasing on develop)
Reviewers: cmollekopf
Reviewed By: cmollekopf
Tags: #sink
Maniphest Tasks: T8482
Differential Revision: https://phabricator.kde.org/D12085
Diffstat (limited to 'common/domain/event.fbs')
-rw-r--r-- | common/domain/event.fbs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/domain/event.fbs b/common/domain/event.fbs index 68c8608..77aaef6 100644 --- a/common/domain/event.fbs +++ b/common/domain/event.fbs | |||
@@ -5,6 +5,8 @@ table Event { | |||
5 | summary:string; | 5 | summary:string; |
6 | description:string; | 6 | description:string; |
7 | startTime:string; | 7 | startTime:string; |
8 | endTime:string; | ||
9 | ical:string; | ||
8 | calendar:string; | 10 | calendar:string; |
9 | } | 11 | } |
10 | 12 | ||