Changes to database.get_accounts

Function is only fetching account names from db and not whole accounts now
Made sorting in that function optional
This commit is contained in:
2022-12-25 17:33:36 +03:00
parent 5991041b35
commit f299173e56
2 changed files with 17 additions and 10 deletions

View File

@ -38,7 +38,11 @@ def _base_handler(
def get_accounts(bot: telebot.TeleBot, engine: Engine, mes: Message) -> None:
_base_handler(bot, mes)
accounts = database.get.get_accounts(engine, mes.from_user.id)
accounts = database.get.get_accounts(
engine,
mes.from_user.id,
to_sort=True,
)
if not accounts:
return _send_tmp_message(bot, mes.chat.id, "У вас нет аккаунтов")