From ff061a3e9591ad57b994ff750aefda6eee93a686 Mon Sep 17 00:00:00 2001 From: chfhtw Date: Fri, 5 Sep 2025 14:04:41 +0200 Subject: [PATCH] FhcAPI: expose getConfig function --- public/js/plugins/Api.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/js/plugins/Api.js b/public/js/plugins/Api.js index 0b8e2fd17..6b9627698 100644 --- a/public/js/plugins/Api.js +++ b/public/js/plugins/Api.js @@ -546,6 +546,9 @@ export default { } else { console.error("FhcApi: method not allowed:", method); } + }, + getErrorHandler(config) { + return get_error_handler(config); } };