Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from lalithkota/develop
Browse files Browse the repository at this point in the history
Added DB name in config
  • Loading branch information
pjoshi751 authored Nov 2, 2023
2 parents 0862027 + de3c28f commit b42533b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class Settings(AuthSettings, Settings):
"""
openapi_version: str = "0.1.0"

db_dbname: str = "spardb"

auth_api_get_dfsp_level: ApiAuthSettings = ApiAuthSettings(enabled=True)
auth_api_get_fa_request: ApiAuthSettings = ApiAuthSettings(enabled=True)
auth_api_update_fa_request: ApiAuthSettings = ApiAuthSettings(enabled=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, **kwargs):
methods=["GET"],
)
self.router.add_api_route(
"/updateFaRequest/",
"/updateFaRequest",
self.update_fa_request,
responses={200: {"model": UpdateTxnStatus}},
methods=["POST"],
Expand Down

0 comments on commit b42533b

Please sign in to comment.