remove fundz_client in favor of pe numbers repo

This commit is contained in:
dandds
2018-07-30 16:25:15 -04:00
parent fc535ea715
commit cb30ee99ca
6 changed files with 27 additions and 29 deletions

View File

@@ -65,7 +65,6 @@ def make_app(config, deps, **kwargs):
{
"page": "requests_new",
"db_session": deps["db_session"],
"fundz_client": deps["fundz_client"],
},
name="request_new",
),
@@ -75,7 +74,6 @@ def make_app(config, deps, **kwargs):
{
"page": "requests_new",
"db_session": deps["db_session"],
"fundz_client": deps["fundz_client"],
},
name="request_form_new",
),
@@ -85,7 +83,6 @@ def make_app(config, deps, **kwargs):
{
"page": "requests_new",
"db_session": deps["db_session"],
"fundz_client": deps["fundz_client"],
},
name="request_form_update",
),
@@ -108,7 +105,6 @@ def make_app(config, deps, **kwargs):
{
"page": "financial_verification",
"db_session": deps["db_session"],
"fundz_client": deps["fundz_client"],
},
name="financial_verification",
),
@@ -172,9 +168,6 @@ def make_deps(config):
api_version="v1",
validate_cert=validate_cert,
),
"fundz_client": ApiClient(
config["default"]["FUNDZ_BASE_URL"], validate_cert=validate_cert
),
"sessions": RedisSessions(
redis_client, config["default"]["SESSION_TTL_SECONDS"]
),