fix: makes ical url publicly accessible if user has option enabled
This commit is contained in:
@@ -39,7 +39,10 @@
|
||||
const calendarEl = document.getElementById('calendar');
|
||||
const calendar = new FullCalendar.Calendar(calendarEl, {
|
||||
initialView: getView(),
|
||||
events: data['episodes'],
|
||||
events: {
|
||||
url: '{{ path('app.monitors.ical') }}',
|
||||
format: 'ics'
|
||||
},
|
||||
windowResize: function(arg) {
|
||||
this.changeView(getView());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user