feat(file): Добавлена функция skipIfQuestionnaire для пропуска анкетирования вакансии.

This commit is contained in:
Oscar
2026-05-28 12:08:48 +03:00
parent 00d0a8d832
commit a9de783891
4 changed files with 102 additions and 38 deletions

View File

@@ -5,4 +5,10 @@ import TelegramBot from 'node-telegram-bot-api'
const token = process.env.TG_BOT_TOKEN!
const bot = new TelegramBot(token, { polling: true })
bot.on('polling_error', (err: any) => {
// EFATAL (socket hang up) — Telegram обрывает long-poll соединение, это нормально
if (err?.code === 'EFATAL') return
console.error('[polling_error]', err?.code, err?.message)
})
export default bot