From 7bc24a49b5ec92b6bdc30e439796b8d34f886817 Mon Sep 17 00:00:00 2001 From: Alexei Date: Sun, 30 Apr 2023 16:30:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BF=D0=B8=D1=81=D0=BE=D0=BA=20=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=BE=D0=B2=20=D0=B2=20=D0=B3?= =?UTF-8?q?=D0=BB=D0=B0=D0=B2=D0=BD=D0=BE=D0=BC=20=D0=BC=D0=B5=D0=BD=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- bot_modules/projects.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 931b8e9..fbd16ad 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Запишите в первый Telegram ID пользователей, которым будет предоставлен полный (root) доступ Во втором файле должен быть записан api_token бота, который создаётся при помощи @BotFather -## ТЕстовая версия +## Тестовая версия Тестовая версия запущена по ссылке http://t.me/Test_TPlatform_bot \ No newline at end of file diff --git a/bot_modules/projects.py b/bot_modules/projects.py index 331d0ee..c082f8b 100644 --- a/bot_modules/projects.py +++ b/bot_modules/projects.py @@ -260,7 +260,10 @@ def GetAccess(): # Доступные кнопки def GetModuleButtons(): - return [keyboard.ButtonWithAccess(projects_button_name, user_access.AccessMode.VIEW, GetAccess())] + return [ + keyboard.ButtonWithAccess(projects_button_name, user_access.AccessMode.VIEW, GetAccess()), + keyboard.ButtonWithAccess(list_project_button_name, user_access.AccessMode.VIEW, GetAccess()), + ] # Обработка кнопок def RegisterHandlers(dp : Dispatcher):