I was hoping to use this tool to filter a calendar feed by location. It looks like the library is wrapping the icalendar library, would it be too much to add location + any/all other fields available on the underlying Event?
In the end I achieved what I wanted by adding location to the line below.
|
def_delegators :raw_event, :dtstart, :dtend, :summary, :description |
I was hoping to use this tool to filter a calendar feed by location. It looks like the library is wrapping the
icalendarlibrary, would it be too much to add location + any/all other fields available on the underlyingEvent?In the end I achieved what I wanted by adding
locationto the line below.ical-filter-proxy/lib/ical_filter_proxy/filterable_event_adapter.rb
Line 7 in f37be41