Skip to content

Commit 1fd1bcb

Browse files
Nikologautamr95
authored andcommitted
Support publishing a messge to a specific thread (slack-go#1309)
Support publishing a messge to a specific thread https://api.slack.com/interactivity/handling#publishing_in_thread From slack interactivity documentation: Publishing responses in thread If you want to publish a message to a specific thread, you'll need to include an attribute response_type and set its value to in_channel. Then, to specify the thread, include a thread_ts. Also, be sure to set replace_original to false or you'll overwrite the message you're wanting to respond to!
1 parent b0ea7de commit 1fd1bcb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

chat.go

+1
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ func (t responseURLSender) BuildRequestContext(ctx context.Context) (*http.Reque
377377
req, err := jsonReq(ctx, t.endpoint, Msg{
378378
Text: t.values.Get("text"),
379379
Timestamp: t.values.Get("ts"),
380+
ThreadTimestamp: t.values.Get("thread_ts"),
380381
Attachments: t.attachments,
381382
Blocks: t.blocks,
382383
Metadata: t.metadata,

0 commit comments

Comments
 (0)