diff options
author | clarkzjw <[email protected]> | 2023-02-23 21:11:05 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-23 21:19:14 -0800 |
commit | d7c1835ed41d50d8e0fd42fd8c33fa760ce24bb5 (patch) | |
tree | eecdaec4da3dd914dd72c9bda264b038aee0343b /prompt | |
parent | 1e448735a15b633cb7743a01ce6249a506196ab8 (diff) | |
download | swarm2fediverse-d7c1835ed41d50d8e0fd42fd8c33fa760ce24bb5.tar.gz |
bot: implement /list command
Diffstat (limited to 'prompt')
-rw-r--r-- | prompt/string.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/prompt/string.py b/prompt/string.py index eda0df8..207713f 100644 --- a/prompt/string.py +++ b/prompt/string.py | |||
@@ -39,7 +39,8 @@ PROMPT_HELP = "Available commands:" \ | |||
39 | "\n`/tos` - show ToS message" \ | 39 | "\n`/tos` - show ToS message" \ |
40 | "\n`/cancel` - cancel current operation during checkins" | 40 | "\n`/cancel` - cancel current operation during checkins" |
41 | 41 | ||
42 | PROMPT_LIST = "List all linked Fediverse accounts" | 42 | PROMPT_LIST = "You are linked with the following Fediverse accounts:" |
43 | PROMPT_LIST_NO_RESULT = "You are not linked with any Fediverse account yet. \n\n Input <code>/login</code> to login." | ||
43 | PROMPT_LOGOUT = "Choose Fediverse account to logout" | 44 | PROMPT_LOGOUT = "Choose Fediverse account to logout" |
44 | PROMPT_TOGGLE_VIS = "Choose visibility of your checkins on Fediverse" | 45 | PROMPT_TOGGLE_VIS = "Choose visibility of your checkins on Fediverse" |
45 | 46 | ||