2020-03-17 17:22:41 -05:00
|
|
|
BEGIN:VCALENDAR
|
|
|
|
VERSION:2.0
|
|
|
|
PRODID:-//Discourse//<%= Discourse.current_hostname %>//<%= Discourse.full_version %>//EN
|
|
|
|
<% @bookmark_reminders.each do |bookmark| %>
|
|
|
|
BEGIN:VEVENT
|
|
|
|
UID:bookmark_reminder_#<%= bookmark.id %>@<%= Discourse.current_hostname %>
|
2021-09-14 19:16:54 -05:00
|
|
|
DTSTAMP:<%= bookmark.updated_at.strftime(I18n.t("datetime_formats.formats.calendar_ics")) %>
|
|
|
|
DTSTART:<%= bookmark.reminder_at_ics %>
|
|
|
|
DTEND:<%= bookmark.reminder_at_ics(offset: 1.hour) %>
|
2020-03-17 17:22:41 -05:00
|
|
|
SUMMARY:<%= bookmark.name.presence || bookmark.topic.title %>
|
2020-03-17 18:06:15 -05:00
|
|
|
DESCRIPTION:<%= Discourse.base_url %>/t/-/<%= bookmark.topic_id %>
|
2020-03-17 17:22:41 -05:00
|
|
|
URL:<%= Discourse.base_url %>/t/-/<%= bookmark.topic_id %>
|
|
|
|
END:VEVENT
|
|
|
|
<% end %>
|
|
|
|
END:VCALENDAR
|