fix: makes ical url publicly accessible if user has option enabled

This commit is contained in:
2025-08-27 22:58:24 -05:00
parent b587302b30
commit 3703272f59
12 changed files with 196 additions and 32 deletions

View File

@@ -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());
}