Add lots of audit logs.

This commit is contained in:
James Cole
2023-12-29 08:19:04 +01:00
parent ec43d10e35
commit 6381d04e2b
12 changed files with 32 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ namespace FireflyIII\Http\Controllers\Webhooks;
use FireflyIII\Http\Controllers\Controller;
use Illuminate\Contracts\View\Factory;
use Illuminate\Support\Facades\Log;
use Illuminate\View\View;
/**
@@ -53,6 +54,7 @@ class IndexController extends Controller
*/
public function index()
{
Log::channel('audit')->info('User visits webhook index page.');
return view('webhooks.index');
}
}