1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Started webhook implementation

This commit is contained in:
Dan Brown
2021-12-07 14:55:11 +00:00
parent 867cbe15ea
commit a3a3055695
12 changed files with 135 additions and 12 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace BookStack\Http\Controllers;
use Illuminate\Http\Request;
class WebhookController extends Controller
{
/**
* Show all webhooks configured in the system.
*/
public function index()
{
return view('settings.webhooks.index');
}
}