diff options
author | Rémi Nicole <nicole@kolabsystems.com> | 2018-05-14 15:08:39 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-05-14 15:08:59 +0200 |
commit | b11f4d47bb833e0cad14b28b036f63a876dd9bc9 (patch) | |
tree | c11679af1d2d64ad4d1e5fc694290f55074cad01 /common/domain/typeimplementations.cpp | |
parent | 0cb72f6370e6723a1575b6afc0eef9bfd0592738 (diff) | |
download | sink-b11f4d47bb833e0cad14b28b036f63a876dd9bc9.tar.gz sink-b11f4d47bb833e0cad14b28b036f63a876dd9bc9.zip |
Add the "allDay" property to Event
Summary: Fixes T8698
Reviewers: cmollekopf
Reviewed By: cmollekopf
Tags: #sink
Maniphest Tasks: T8698
Differential Revision: https://phabricator.kde.org/D12869
Diffstat (limited to 'common/domain/typeimplementations.cpp')
-rw-r--r-- | common/domain/typeimplementations.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/domain/typeimplementations.cpp b/common/domain/typeimplementations.cpp index b584138..e65c998 100644 --- a/common/domain/typeimplementations.cpp +++ b/common/domain/typeimplementations.cpp | |||
@@ -212,6 +212,7 @@ void TypeImplementation<Event>::configure(PropertyMapper &propertyMapper) | |||
212 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, Uid, uid); | 212 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, Uid, uid); |
213 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, StartTime, startTime); | 213 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, StartTime, startTime); |
214 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, EndTime, endTime); | 214 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, EndTime, endTime); |
215 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, AllDay, allDay); | ||
215 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, Ical, ical); | 216 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, Ical, ical); |
216 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, Calendar, calendar); | 217 | SINK_REGISTER_SERIALIZER(propertyMapper, Event, Calendar, calendar); |
217 | } | 218 | } |