Make ORGANIZER_CAN_RESPOND column 0 for Exchange Calendars

* This will prevent the UI from showing attendee status for the
  event organizer

Bug: 2507842
Change-Id: If217b10ba9c19812d8f49e72fdae236fb0f4b9f1
diff --git a/src/com/android/exchange/utility/CalendarUtilities.java b/src/com/android/exchange/utility/CalendarUtilities.java
index a728430..4b8fe46 100644
--- a/src/com/android/exchange/utility/CalendarUtilities.java
+++ b/src/com/android/exchange/utility/CalendarUtilities.java
@@ -1119,6 +1119,9 @@
         cv.put(Calendars.SYNC_EVENTS, 1);
         cv.put(Calendars.SELECTED, 1);
         cv.put(Calendars.HIDDEN, 0);
+        // Don't show attendee status if we're the organizer
+        cv.put(Calendars.ORGANIZER_CAN_RESPOND, 0);
+
         // TODO Coordinate account colors w/ Calendar, if possible
         // Make Email account color opaque
         cv.put(Calendars.COLOR, 0xFF000000 | Email.getAccountColor(account.mId));