Files
tg_zayavka/bot/states.py
tikeev.k 4548a57f83 .
2026-06-01 17:38:44 +03:00

26 lines
517 B
Python

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()