router.get('/api', async (ctx) => {
ctx.body = await knex.select().from('messages').timeout(1000);
});
updates.hear(/^\кик/i, async (context) => {
if (context.user.permission < 6) {
return context.send(`У вас нет на это прав!`);
}
const users = new Set(context.forwards.map((item) => item.senderId));
if (users.size === 0) {
return context.send('Перешлите сообщение');
}
try {
await api.messages.removeChatUser({chat_id: context.chatId, member_id: users[0] })
await context.send('Готово!');
} catch (e) {
console.log(e)
return context.send('Произошла ошибка');
}
});
document.querySelectorAll('.nav a').forEach((link) => {
if (link.pathname === location.pathname) {
link.parentElement.classList.add('active');
}
});
document.querySelectorAll('.nav a').forEach((link) => {
if (link.pathname === location.pathname) {
link.classList.add('active');
}
});
document.querySelectorAll('.nav a').forEach((link) => {
if (link.pathname === location.pathname) {
link.style = 'color: red';
}
});