mirror of
https://gh.wpcy.net/https://github.com/Khazhinov/freescout-openid.git
synced 2026-04-17 11:12:21 +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');
|
|
});
|