🚀 feat(bot-commands): Добавлена обработка статуса "откликаюсь на вакансии" при команде /apply.
All checks were successful
Deploy / deploy (push) Successful in 46s

This commit is contained in:
Oscar
2026-05-29 17:07:35 +03:00
parent 6acc8d0adb
commit aded3fff7e
4 changed files with 26 additions and 2 deletions

View File

@@ -127,6 +127,12 @@ export function registerHHCommands() {
const chatId = msg.chat.id
const state = getState(chatId)
if (state.isApplying) {
await bot.sendMessage(chatId, '⏳ Подождите, идут отклики на вакансии...')
return
}
const isAwaiting = state.awaitingEmail || state.awaitingQuery || state.awaitingMax || state.awaitingPrompt
const isMenuButton = Object.values(BTN).includes(msg.text as typeof BTN[keyof typeof BTN])