Skip to content

Commit 7abdf47

Browse files
committed
fix: change comment and name for route
1 parent 4d64d02 commit 7abdf47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

routes/bot.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
| Bot Routes
99
|--------------------------------------------------------------------------
1010
|
11-
| Here is where you can register web routes for your application. These
11+
| Here is where you can register bot routes for your application. These
1212
| routes are loaded by the RouteServiceProvider and all of them will
13-
| be assigned to the "web" middleware group. Make something great!
13+
| be assigned to the "bot" middleware group. Make something great!
1414
|
1515
*/
1616

1717
Route::prefix('telegram-git-notifier')->group(function () {
1818
Route::prefix('webhook')->group(function () {
19-
Route::get('/set', [WebhookAction::class, 'set'])->name('set-webhook');
20-
Route::get('/delete', [WebhookAction::class, 'delete'])->name('delete-webhook');
19+
Route::get('/set', [WebhookAction::class, 'set'])->name('webhook.set');
20+
Route::get('/delete', [WebhookAction::class, 'delete'])->name('webhook.delete');
2121
});
2222
});

0 commit comments

Comments
 (0)