This commit is contained in:
tikeev.k
2026-06-01 17:38:44 +03:00
commit 4548a57f83
14 changed files with 2989 additions and 0 deletions

25
bot/states.py Normal file
View File

@@ -0,0 +1,25 @@
from aiogram.fsm.state import State, StatesGroup
class TicketFlow(StatesGroup):
section = State()
topic = State()
subtopic = State()
description = State()
attachment = State()
duplicate_decision = State()
class AdminFlow(StatesGroup):
close_resolution = State()
reject_reason = State()
note_text = State()
user_message = State()
find_number = State()
chat = State()
defer_reason = State()
class UserFlow(StatesGroup):
comment = State()
chat = State()