diff --git a/app/Actions/Fortify/CreateNewUser.php b/app/Actions/Fortify/CreateNewUser.php index 90e961e..99f39d5 100644 --- a/app/Actions/Fortify/CreateNewUser.php +++ b/app/Actions/Fortify/CreateNewUser.php @@ -1,5 +1,7 @@ env('ALPHAVANTAGE_API_KEY'), ]; diff --git a/config/app.php b/config/app.php index 02c21f0..b213b42 100644 --- a/config/app.php +++ b/config/app.php @@ -1,5 +1,7 @@ env('FINNHUB_API_KEY'), ]; diff --git a/config/fortify.php b/config/fortify.php index a324748..0576d84 100644 --- a/config/fortify.php +++ b/config/fortify.php @@ -1,5 +1,7 @@ env('MARKET_DATA_REFRESH', 30), // minutes diff --git a/config/jetstream.php b/config/jetstream.php index b1f2c73..ed11e49 100644 --- a/config/jetstream.php +++ b/config/jetstream.php @@ -1,5 +1,7 @@ group(fun Route::get('/dashboard', [DashboardController::class, 'show'])->name('dashboard'); Route::view('/import-export', 'import-export') ->name('import-export') - ->when(!config('investbrain.self_hosted'), function($route) { + ->when(! config('investbrain.self_hosted'), function ($route) { return $route->middleware('verified'); }); @@ -44,7 +46,7 @@ Route::get('invite/{portfolio}/{user}', InvitedOnboardingController::class)->nam // Overwrites Jetstream routes Route::get('/user/api-tokens', [ApiTokenController::class, 'index']) ->name('api-tokens.index') - ->when(!config('investbrain.self_hosted'), function($route) { + ->when(! config('investbrain.self_hosted'), function ($route) { return $route->middleware('verified'); }); Route::get('/terms', [TermsOfServiceController::class, 'show'])->name('terms.show'); diff --git a/tests/Api/HoldingsTest.php b/tests/Api/HoldingsTest.php index 1cdd137..d0a98df 100644 --- a/tests/Api/HoldingsTest.php +++ b/tests/Api/HoldingsTest.php @@ -1,5 +1,7 @@