diff options
author | Minijackson <minijackson@riseup.net> | 2018-05-14 10:52:09 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2018-05-14 12:01:44 +0200 |
commit | ce9cba93557f7fc985c9f3b8957840c28c438cfe (patch) | |
tree | dafcd2f8150305499cb86f645004dcd78ee7e320 /common/domain/typeimplementations.cpp | |
parent | d135fa0387672c10bad70b44867470affe1a3232 (diff) | |
download | sink-ce9cba93557f7fc985c9f3b8957840c28c438cfe.tar.gz sink-ce9cba93557f7fc985c9f3b8957840c28c438cfe.zip |
Add the "allDay" property to Eventcalendar/daylongevents
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 | } |