Browse Source

Мелкие правки. Удалена кнопка список проектов с главной

pull/3/head
Alexei 2 years ago
parent
commit
242cb4631e
  1. 6
      bot_modules/projects.py
  2. 6
      bot_sys/bd_table.py

6
bot_modules/projects.py

@ -124,9 +124,3 @@ class ModuleProjects(mod_table_operate.TableOperateModule):
def GetName(self):
return module_name
def GetModuleButtons(self):
return super().GetModuleButtons() + [
keyboard.ButtonWithAccess(self.GetButton(mod_table_operate.ButtonNames.LIST), user_access.AccessMode.VIEW, self.GetAccess()),
]

6
bot_sys/bd_table.py

@ -6,9 +6,9 @@ from enum import auto
# Тип поля в таблице
class TableFieldType(Enum):
INT = 'INTEGER'
STR = 'TEXT'
ENUM = 'ENUM'
INT = auto()
STR = auto()
ENUM = auto()
def InitTableType(a_TableFieldType):
types = {

Loading…
Cancel
Save