From 884b73211a3a9536540d94a69fe5f3d8940b24f6 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Sun, 23 Nov 2025 00:24:27 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20add=20route=20for=20downloading=20m?= =?UTF-8?q?eetup=20calendar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index 759ca01..3bc3e9e 100644 --- a/routes/web.php +++ b/routes/web.php @@ -47,6 +47,8 @@ Route::middleware([]) ->prefix('/{country:code}') ->group(function () { /* OLD URLS */ + Route::get('meetup/stream-calendar', \App\Http\Controllers\DownloadMeetupCalendar::class) + ->name('ics'); Route::get('/meetup/overview', function ($country) { return redirect("/{$country}/meetups"); });