feat: Added ability to change travel

This commit is contained in:
ITQ
2024-03-23 23:53:54 +03:00
parent 40ea9689ab
commit 02508ea9fd
9 changed files with 206 additions and 24 deletions
+10
View File
@@ -7,3 +7,13 @@ class TravelCreationState(StatesGroup):
error_message_id = State()
title = State()
description = State()
class TravelAlteringState(StatesGroup):
travel_message_id = State()
input_message_id = State()
error_message_id = State()
successfully = State()
travel_id = State()
column = State()
value = State()