mirror of
https://git.yylx.win/https://github.com/Khazhinov/freescout-openid.git
synced 2026-07-27 12:26:57 +08:00
8 lines
247 B
PHP
8 lines
247 B
PHP
<?php
|
|
|
|
Route::group(['middleware' => 'web',
|
|
'prefix' => \Helper::getSubdirectory(),
|
|
'namespace' => 'Modules\OpenID\Http\Controllers'], function()
|
|
{
|
|
Route::get('/openid_callback', 'OpenIDController@index')->name('openid_callback');
|
|
});
|