]> git.cworth.org Git - turbot/commitdiff
Make "/help me" self-documenting
authorCarl Worth <cworth@cworth.org>
Mon, 11 Jan 2021 21:09:52 +0000 (13:09 -0800)
committerCarl Worth <cworth@cworth.org>
Mon, 11 Jan 2021 21:12:16 +0000 (13:12 -0800)
So that when people see others doing this, they will know how to do it too.

turbot/interaction.py

index f784a0266203862711d4c20f16656195f712a09f..8cba346a2122a96c1e2bd9740f78977fd597db7c 100644 (file)
@@ -1338,6 +1338,7 @@ def help_command(turb, body, args):
     channel_name = body['channel_name'][0]
     channel_id = body['channel_id'][0]
     response_url = body['response_url'][0]
+    user_id = body['user_id'][0]
 
     # Process "/help me" first. It calls out to have_you_tried rather
     # than going through our help system.
@@ -1345,7 +1346,8 @@ def help_command(turb, body, args):
     # Also, it reports in the current channel, (where all other help
     # output is reported privately to the invoking user).
     if args == "me":
-        to_try = have_you_tried()
+        to_try = "In response to <@{}> asking `/help me`:\n\n{}\n".format(
+            user_id, have_you_tried())
 
         # If this is a direct message then there's not a usable channel_id
         # and we have to use the response_url instead