diff --git a/index.js b/index.js index 192ca35..85982ae 100644 --- a/index.js +++ b/index.js @@ -167,6 +167,8 @@ bot.command('view', (ctx) => { const displayValue = key === 'type' ? type : value; responseText += `${key.charAt(0).toUpperCase() + key.slice(1)}: ${displayValue || 'N/A'}\n`; } + responseText += `\nTo accept this request, use the command:\n/accept ${chatId} ${requestId + 1}\n`; + responseText += `To decline this request, use the command:\n/decline ${chatId} ${requestId + 1}`; ctx.replyWithHTML(responseText); } else { ctx.reply('Invalid user ID or request ID.');