We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b87794 + 8c9cab8 commit e9228edCopy full SHA for e9228ed
src/pycamp_bot/commands/projects.py
@@ -72,6 +72,12 @@ async def naming_project(update, context):
72
username = update.message.from_user.username
73
name = update.message.text
74
75
+ if name == '/cargar_proyecto':
76
+ await context.bot.send_message(
77
+ chat_id=update.message.chat_id,
78
+ text="Hubo un problema de conectividad, volvé a ingresar el nombre"
79
+ )
80
+ return NOMBRE
81
user = Pycampista.get_or_create(username=username, chat_id=update.message.chat_id)[0]
82
83
new_project = Project(name=name)
0 commit comments