File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
$ routePrefix = config ('telegram-git-notifier.defaults.route_prefix ' );
19
19
20
20
Route::prefix ($ routePrefix )->name ("$ routePrefix. " )->group (function () {
21
- Route::match (['get ' , 'post ' ], '/ ' , IndexAction::class)->name (" index " );
21
+ Route::match (['get ' , 'post ' ], '/ ' , IndexAction::class)->name (' index ' );
22
22
23
- Route::prefix ('webhook ' )->name (" webhook. " )->group (function () {
24
- Route::get ('set ' , [WebhookAction::class, 'set ' ])->name (" set " );
25
- Route::get ('delete ' , [WebhookAction::class, 'delete ' ])->name (" delete " );
26
- Route::get ('info ' , [WebhookAction::class, 'getWebHookInfo ' ])->name (" info " );
27
- Route::get ('updates ' , [WebhookAction::class, 'getUpdates ' ])->name (" updates " );
23
+ Route::prefix ('webhook ' )->name (' webhook. ' )->group (function () {
24
+ Route::get ('set ' , [WebhookAction::class, 'set ' ])->name (' set ' );
25
+ Route::get ('delete ' , [WebhookAction::class, 'delete ' ])->name (' delete ' );
26
+ Route::get ('info ' , [WebhookAction::class, 'getWebHookInfo ' ])->name (' info ' );
27
+ Route::get ('updates ' , [WebhookAction::class, 'getUpdates ' ])->name (' updates ' );
28
28
});
29
29
});
You can’t perform that action at this time.
0 commit comments