BookStack/app/Http/Controllers/WebhookController.php

17 lines
278 B
PHP
Raw Normal View History

2021-12-07 09:55:11 -05:00
<?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');
}
}