Method: DateBook::ActsAsEvent::InstanceMethods#popover_url

Defined in:
lib/date_book/concerns/acts_as_event.rb

#popover_url(occurrence = nil) ⇒ Object



68
69
70
71
72
73
74
75
76
77
# File 'lib/date_book/concerns/acts_as_event.rb', line 68

def popover_url(occurrence = nil)
  DateBook::Engine
    .routes
    .url_helpers
    .popover_calendar_event_path(
      calendar,
      slug,
      occurrence_id: occurrence&.id
    )
end