mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00
8 lines
321 B
PHP
8 lines
321 B
PHP
<?php
|
|
|
|
use Illuminate\Routing\Route;
|
|
use App\Http\Controllers\Auth;
|
|
|
|
Route::get('/oauth/redirect/{driver}', [Auth\OAuthController::class, 'redirect'])->name('auth.oauth.redirect');
|
|
Route::get('/oauth/callback/{driver}', [Auth\OAuthController::class, 'callback'])->name('auth.oauth.callback')->withoutMiddleware('guest');
|