Add meetup/ical route and handler in MeetupController

- Introduced a new route `meetup/ical` in `api.php` to handle iCal data export.
- Added `ical` method to `MeetupController` returning a 404 response for now.
This commit is contained in:
HolgerHatGarKeineNode
2025-11-27 15:48:40 +01:00
parent 0300e397f8
commit c4f9f1a089
2 changed files with 6 additions and 0 deletions

View File

@@ -10,6 +10,11 @@ use Illuminate\Http\Request;
class MeetupController extends Controller
{
public function ical()
{
abort(404);
}
public function index(Request $request)
{
$myMeetupIds = User::query()->find($request->input('user_id'))->meetups->pluck('id');