Add option to delete webhooks.

This commit is contained in:
James Cole
2022-09-18 05:49:56 +02:00
parent 625ad14d7d
commit d9245f06f7
58 changed files with 768 additions and 43 deletions

View File

@@ -1092,6 +1092,9 @@ Route::group(
static function () {
Route::get('index', ['uses' => 'IndexController@index', 'as' => 'index']);
Route::get('create', ['uses' => 'CreateController@index', 'as' => 'create']);
Route::get('edit/{webhook}', ['uses' => 'EditController@index', 'as' => 'edit']);
Route::get('delete/{webhook}', ['uses' => 'DeleteController@index', 'as' => 'delete']);
Route::get('show/{webhook}', ['uses' => 'ShowController@index', 'as' => 'show']);
}
);