mirror of
https://gh.wpcy.net/https://github.com/fhirter-vkb/freescout-oauth.git
synced 2026-07-15 08:48:38 +08:00
8 lines
243 B
PHP
Executable file
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');
|
|
});
|