Подскажите, как сделать, чтобы открытую кнопку, видел только пользователь, который её нажал, не так, что всем приходит уведомление, что например 50 пользователей в группе, нажмут эту кнопку.
@dp.callback_query_handler(text="hidelete")
async def podpishis_call(callback: types.CallbackQuery):
await callback.message.answer("Описание и ссылки, при нажатии", parse_mode='html', disable_web_page_preview=True, reply_markup=btn_send_markup)
await callback.answer()
@dp.message_handler(content_types=["text"])
async def handler_text(message):
markupkeyboard = types.InlineKeyboardMarkup(row_width=1)
url_tg = types.InlineKeyboardButton(text="Подпишитесь", callback_data="hidelete")
markupkeyboard.add(url_button, url_tg)
await message.reply("Описание при отправке текста, в группу".format(message.from_user, bot.get_me()), disable_notification=True, disable_web_page_preview=True, parse_mode='html', reply_markup=markupkeyboard)