(20241217) payment reference will now be the same as the payment id.

This commit is contained in:
2024-12-17 15:57:13 +05:30
parent d24d9cc248
commit 2e0c0224d4
15 changed files with 93 additions and 69 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ async def is_authorized(
# Fetch the auth tokens from the database:
# Retrieve the document of the token id:
auth_tokens = await current_app.core_auth_token_controller.get_tokens(
auth_tokens = await current_app.core_auth_token_controller.get_tokens_from_ids(
mongo_conn = mongo_conn,
token_ids = [ObjectId(t) for t in token_ids]
)