Skip to content

Commit

Permalink
fix: change comment and name for route
Browse files Browse the repository at this point in the history
  • Loading branch information
pxthinh committed Oct 8, 2023
1 parent 4d64d02 commit 7abdf47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions routes/bot.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
| Bot Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| Here is where you can register bot routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
| be assigned to the "bot" middleware group. Make something great!
|
*/

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

0 comments on commit 7abdf47

Please sign in to comment.