Initial commit

This commit is contained in:
2019-10-13 18:38:03 +02:00
commit 759eb88ef8
10124 changed files with 838037 additions and 0 deletions

9
routes.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
Route::group(['prefix' => 'gcalendar'], function () {
Route::get('oauth2callback', [
'as' => 'oauth2callback',
'uses' => 'NicoSt\GCalendar\Controllers\GoogleCallback@oauth2callback'
]);
});