Erki Aas
7b5b15aebc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
9 lines
243 B
PHP
Executable File
9 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');
|
|
});
|