Skip to content

Commit

Permalink
Merge pull request #2877 from jamshale/feat/2876
Browse files Browse the repository at this point in the history
Add wallet.type config to /settings endpoint
  • Loading branch information
ianco authored Apr 10, 2024
2 parents a629019 + 21d14f1 commit 1ad4958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aries_cloudagent/settings/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 1ad4958

Please sign in to comment.