File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
1717Route::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});
You can’t perform that action at this time.
0 commit comments