mirror of
https://github.com/ada-dmitry/vol_bot.git
synced 2026-09-24 00:30:19 +00:00
12 lines
472 B
Python
12 lines
472 B
Python
from aiogram.types import InlineKeyboardMarkup, InlineKeyboardButton
|
|
|
|
def get_subscription_keyboard(subscribed: bool):
|
|
if subscribed:
|
|
return InlineKeyboardMarkup(inline_keyboard=[
|
|
[InlineKeyboardButton(text="❌ Отписаться", callback_data="unsubscribe")]
|
|
])
|
|
else:
|
|
return InlineKeyboardMarkup(inline_keyboard=[
|
|
[InlineKeyboardButton(text="✅ Подписаться", callback_data="subscribe")]
|
|
])
|