How can I change the default reminder time for calendar events notification on the mobile app? it is currently set to 1 hour before the event starts, and I want to make it at least 2 days for all the calendar events by default.
Any help appreciated.
Hi samet,
it's not possible right now. We have an open issue about this:
https://tracker.moodle.org/browse/MOBILE-1387
Kind regards,
Dani
Thanks for your reply,
I just figured it out:
Changing the "dateTriggered" variable from the code did the trick for me. I just made the multiplier 1440 for a 24 hours notification in addons/calendar/services/calendar.js
line 369...........................var dateTriggered = new Date((event.timestart - (time * 1440)) * 1000),