freescout/modules/OAuth/Http/routes.php
Erki Aas 7b5b15aebc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add OAuth module from repository
2024-02-01 15:20:10 +02:00

9 lines
243 B
PHP
Executable File

<?php
Route::group(['middleware' => 'web',
'prefix' => \Helper::getSubdirectory(),
'namespace' => 'Modules\OAuth\Http\Controllers'], function()
{
Route::get('/oauth_callback', 'OAuthController@index')->name('oauth_callback');
});