-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter on events created by the calling app #6
Comments
It should be noted that the current workaround for this is to just have the app separately store the IDs for the calendars/events it creates... via settings, Sqlite, cloud, twitter, whatever. |
Closing because it's non-trivial to implement and storing IDs in the app really seems the better way to go anyhow. |
@TheAlmightyBob Some help needed here: I am trying to use the externalID (iOS) to save the event, but when I set the external ID to a value, it is changed whenever I retrieve the events. How can I obtain the ID when saving an event? Also, if I would save the event IDs in my app, they can get out of sync with my calendar, for instance when I uninstall my app and later reinstall it. Any thoughts on this? |
AddOrUpdateEvent fills in the ExternalID property of the passed-in CalendarEvent object. For the latter question, I don't have any helpful thoughts for you. My immediate thought is that if the user has chosen to uninstall the app, then those events don't belong to the app anymore. If you need to support installing the app onto a device that already has events you want to manage, you could support some kind of explicit user-driven import step. |
Trying to capture the request/discussion from issue #3, as it's a bit out of the scope of that issue.
The request is to "easily filter all events that were created by my app in order to update or delete them."
Thoughts:
The text was updated successfully, but these errors were encountered: