mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:15:00 +08:00
15 lines
605 B
Plaintext
15 lines
605 B
Plaintext
|
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 %>
|
||
|
DTSTAMP:<%= bookmark.updated_at.strftime("%Y%m%dT%H%M%SZ") %>
|
||
|
DTSTART:<%= bookmark.reminder_at.strftime("%Y%m%dT%H%M%SZ") %>
|
||
|
DTEND:<%= (bookmark.reminder_at + 1.hour).strftime("%Y%m%dT%H%M%SZ") %>
|
||
|
SUMMARY:<%= bookmark.name.presence || bookmark.topic.title %>
|
||
|
URL:<%= Discourse.base_url %>/t/-/<%= bookmark.topic_id %>
|
||
|
END:VEVENT
|
||
|
<% end %>
|
||
|
END:VCALENDAR
|