Add client list in tokens.
This commit is contained in:
parent
514117a079
commit
1cc0743061
8
bot.py
8
bot.py
|
@ -401,9 +401,13 @@ def tokens(bot, update):
|
||||||
reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)
|
reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)
|
||||||
reply_text = ("Tokens are used to authenticate external "
|
reply_text = ("Tokens are used to authenticate external "
|
||||||
"applications. This only provides access to "
|
"applications. This only provides access to "
|
||||||
"Questable data.")
|
"Questable data.\n"
|
||||||
|
"\nOfficial clients are:\n"
|
||||||
|
"[Questable CLI](https://gitlab.com/questable/questable-cli)"
|
||||||
|
)
|
||||||
bot.send_message(chat_id=update.message.chat_id, text=reply_text,
|
bot.send_message(chat_id=update.message.chat_id, text=reply_text,
|
||||||
reply_markup=reply_markup)
|
reply_markup=reply_markup, parse_mode="markdown",
|
||||||
|
disable_web_page_preview=True)
|
||||||
|
|
||||||
|
|
||||||
def add_token(bot, update, player):
|
def add_token(bot, update, player):
|
||||||
|
|
Loading…
Reference in New Issue