From 319037fe8c6b15307256d72da3d355f7f2851b4a Mon Sep 17 00:00:00 2001 From: JB Date: Fri, 28 Nov 2025 16:38:31 -0800 Subject: [PATCH] feat: Add integration settings loading to settings page --- abogen/web/routes/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/abogen/web/routes/settings.py b/abogen/web/routes/settings.py index b18d328..b24039a 100644 --- a/abogen/web/routes/settings.py +++ b/abogen/web/routes/settings.py @@ -3,6 +3,7 @@ from flask.typing import ResponseReturnValue from abogen.web.routes.utils.settings import ( load_settings, + load_integration_settings, save_settings, coerce_bool, coerce_int, @@ -27,6 +28,7 @@ def settings_page() -> str: return render_template( "settings.html", settings=load_settings(), + integrations=load_integration_settings(), options=template_options(), normalization_samples=_NORMALIZATION_SAMPLES, )