class Tilia::CalDav::ShareableCalendar
This object represents a CalDAV calendar that can be shared with other users.
Public Instance Methods
publish_status=(value)
click to toggle source
Marks this calendar as published.
Publishing a calendar should automatically create a read-only, public, subscribable calendar.
@param bool value @return void
# File lib/tilia/cal_dav/shareable_calendar.rb, line 49 def publish_status=(value) @caldav_backend.update_publish_status(@calendar_info['id'], value) end