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:
16
app/Http/Controllers/WebhookController.php
Normal file
16
app/Http/Controllers/WebhookController.php
Normal 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');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user