Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyexchange/base/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class BaseExchangeCalendarEvent(object):
organizer = None
reminder_minutes_before_start = None
is_all_day = None
sensitivity = None

recurrence = None
recurrence_end_date = None
Expand All @@ -73,7 +74,7 @@ class BaseExchangeCalendarEvent(object):
DATA_ATTRIBUTES = [
u'_id', u'subject', u'start', u'end', u'location', u'html_body', u'text_body', u'organizer',
u'_attendees', u'_resources', u'reminder_minutes_before_start', u'is_all_day',
'recurrence', 'recurrence_interval', 'recurrence_days', 'recurrence_day',
'recurrence', 'recurrence_interval', 'recurrence_days', 'recurrence_day', 'sensitivity',
]

RECURRENCE_ATTRIBUTES = [
Expand Down
4 changes: 4 additions & 0 deletions pyexchange/exchange2010/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ def _parse_event_properties(self, response):
{
u'xpath': u'//m:Items/t:CalendarItem/t:LegacyFreeBusyStatus',
},
u'sensitivity':
{
u'xpath': u'//m:Items/t:CalendarItem/t:Sensitivity',
},
u'start':
{
u'xpath': u'//m:Items/t:CalendarItem/t:Start',
Expand Down