mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
17 lines
278 B
PHP
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');
|
||
|
}
|
||
|
}
|