add route for downloading meetup calendar

This commit is contained in:
HolgerHatGarKeineNode
2025-11-23 00:24:27 +01:00
parent 8600f98312
commit 884b73211a

View File

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