feat: deeplink

This commit is contained in:
2026-05-27 10:56:56 +02:00
parent 6a24d07cec
commit 51b50aa1d0
2 changed files with 12 additions and 3 deletions
+2
View File
@@ -1,6 +1,7 @@
<?php
use App\Http\Controllers\AuthController;
use App\Http\Controllers\BillingController;
use App\Http\Controllers\StravaController;
use Illuminate\Support\Facades\Route;
@@ -10,3 +11,4 @@ Route::post('password/reset', [AuthController::class, 'resetPasswordFromView'])
->middleware('throttle:6,1')
->name('password.web-update');
Route::get('strava/callback', [StravaController::class, 'redirectToMobileApp'])->name('strava.web-callback');
Route::get('billing/return/{status}', [BillingController::class, 'redirectToMobileApp'])->name('billing.web-return');