(20241205) Migrating from the field "accountId" to "tokenId" to identify auth tokens.

This commit is contained in:
2024-12-05 11:19:23 +05:30
parent f835143ef4
commit 5c36f90e98
15 changed files with 478 additions and 47 deletions
+2 -2
View File
@@ -165,9 +165,9 @@ async def list_mails_for_account_id(
)
# Get the mail:
mails_list = await current_app.mail_retrieve_model.list_for_account_identifier(
mails_list = await current_app.mail_retrieve_model.list_for_token_id(
mongo_conn = current_app.data_mongo,
account_identifier = inbound_data.accountId,
token_id = inbound_data.tokenId,
limit = inbound_data.count,
skip = inbound_data.fromCount
)