freescout/modules/OAuth/Http/routes.php

9 lines
243 B
PHP
Raw Normal View History

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