]> BookStack Code Mirror - bookstack/blob - app/Http/Controllers/WebhookController.php
Started webhook implementation
[bookstack] / app / Http / Controllers / WebhookController.php
1 <?php
2
3 namespace BookStack\Http\Controllers;
4
5 use Illuminate\Http\Request;
6
7 class WebhookController extends Controller
8 {
9     /**
10      * Show all webhooks configured in the system.
11      */
12     public function index()
13     {
14         return view('settings.webhooks.index');
15     }
16 }