Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
thunderbird calendar
Browse files Browse the repository at this point in the history
  • Loading branch information
Huber1 committed Apr 14, 2024
1 parent 7bcb1c4 commit 5c63106
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/Http/Controllers/CalendarController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public function index(): CalendarCollection
$fristenTermine->name = "Fakultät 10 Fristen & Termine";
$fristenTermine->url = "https://calendar.google.com/calendar/ical/qp1nk83jvkfm7a3m9goqhr5oo4%40group.calendar.google.com/public/basic.ics";

return new CalendarCollection([$fristenTermine]);
$thunderbird = new Calendar();
$thunderbird->id = "870baf08-b182-4451-a1f5-657b8ef02852";
$thunderbird->name = "Thunderbird Feiertage";
$thunderbird->url = "https://www.thunderbird.net/media/caldata/GermanHolidays.ics";

return new CalendarCollection([$fristenTermine, $thunderbird]);
}
}

0 comments on commit 5c63106

Please sign in to comment.