From c69d58d191f9f7b13af2dee2a926143f8d747810 Mon Sep 17 00:00:00 2001 From: jamshale Date: Mon, 8 Apr 2024 16:02:09 +0000 Subject: [PATCH] Add wallet.type config to /settings endpoint Signed-off-by: jamshale --- aries_cloudagent/settings/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aries_cloudagent/settings/routes.py b/aries_cloudagent/settings/routes.py index b5be37258d..777ed0a632 100644 --- a/aries_cloudagent/settings/routes.py +++ b/aries_cloudagent/settings/routes.py @@ -4,7 +4,6 @@ from aiohttp import web from aiohttp_apispec import docs, request_schema, response_schema - from marshmallow import fields from ..admin.request_context import AdminRequestContext @@ -56,6 +55,7 @@ def _get_filtered_settings_dict(wallet_settings: dict): filter_param_list = list(ACAPY_LIFECYCLE_CONFIG_FLAG_ARGS_MAP.values()) filter_param_list.append("endorser.author") filter_param_list.append("endorser.endorser") + filter_param_list.append("wallet.type") settings_dict = {} for param in filter_param_list: if param in wallet_settings: