Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wallet.type config to /settings endpoint #2877

Merged
merged 2 commits into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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