Skip to content

Commit

Permalink
fix: inertia routes
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher authored Nov 6, 2023
1 parent 5197a75 commit 5a48703
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions routes/socialstream-inertia.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

Route::group(['middleware' => config('socialstream.middleware', ['web'])], function () {
Route::get('/oauth/{provider}', [OAuthController::class, 'redirect'])->name('oauth.redirect');
Route::get('/oauth/{provider}/callback', [OAuthController::class, 'callback'])->name('oauth.callback');
Route::post('/oauth/{provider}/callback', [OAuthController::class, 'callback'])->name('oauth.callback');
Route::match(['get', 'post'], '/oauth/{provider}/callback', [OAuthController::class, 'callback'])->name('oauth.callback');

Route::delete('/user/connected-account/{id}', [ConnectedAccountController::class, 'destroy'])
->middleware(['auth'])
Expand Down

0 comments on commit 5a48703

Please sign in to comment.