BookStack/app/Http/Controllers/WebhookController.php
2021-12-07 14:55:11 +00:00

17 lines
278 B
PHP

<?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');
}
}