freescout-oauth/Http/routes.php
2021-09-21 18:51:48 +03:00

8 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');
});