diff options
author | clarkzjw <[email protected]> | 2023-02-23 21:18:49 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-23 21:19:21 -0800 |
commit | cbfde03e620188d80213a8b15a4dffdb8948b257 (patch) | |
tree | 8f92afbed1137c6f992be57a84a3101a09475acc /config.py | |
parent | d7c1835ed41d50d8e0fd42fd8c33fa760ce24bb5 (diff) | |
download | swarm2fediverse-cbfde03e620188d80213a8b15a4dffdb8948b257.tar.gz |
bot: implement /logout command
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,11 @@ MAIN_MENU = ReplyKeyboardMarkup([ | |||
19 | [KeyboardButton(text="/Help")] | 19 | [KeyboardButton(text="/Help")] |
20 | ]) | 20 | ]) |
21 | 21 | ||
22 | LOGIN_MENU = ReplyKeyboardMarkup([ | ||
23 | [KeyboardButton(text="/login")], | ||
24 | [KeyboardButton(text="/Help")] | ||
25 | ]) | ||
26 | |||
22 | SKIP_LOCATION_SEARCH = CALLBACK_SKIP | 27 | SKIP_LOCATION_SEARCH = CALLBACK_SKIP |
23 | INLINE_SKIP_MENU = InlineKeyboardMarkup([ | 28 | INLINE_SKIP_MENU = InlineKeyboardMarkup([ |
24 | [InlineKeyboardButton("Skip", callback_data=SKIP_LOCATION_SEARCH)] | 29 | [InlineKeyboardButton("Skip", callback_data=SKIP_LOCATION_SEARCH)] |