mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-23 04:38:30 +08: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');
|
|
}
|
|
}
|