Add OAuth module from repository
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-01 15:20:10 +02:00
parent 37db204cab
commit 7b5b15aebc
27 changed files with 474 additions and 2 deletions

8
modules/OAuth/Http/routes.php Executable file
View File

@@ -0,0 +1,8 @@
<?php
Route::group(['middleware' => 'web',
'prefix' => \Helper::getSubdirectory(),
'namespace' => 'Modules\OAuth\Http\Controllers'], function()
{
Route::get('/oauth_callback', 'OAuthController@index')->name('oauth_callback');
});