@@ -922,6 +922,9 @@ <h1 class="title">Module <code>slack_bolt.app.async_app</code></h1>
922922 # If an end-user posts a message with "Also send to #channel" checked,
923923 # the message event comes with this subtype.
924924 "thread_broadcast",
925+ # If an end-user posts a message with attached files,
926+ # the message event comes with this subtype.
927+ "file_share",
925928 ),
926929 }
927930 primary_matcher = builtin_matchers.message_event(
@@ -2389,6 +2392,9 @@ <h2 id="args">Args</h2>
23892392 # If an end-user posts a message with "Also send to #channel" checked,
23902393 # the message event comes with this subtype.
23912394 "thread_broadcast",
2395+ # If an end-user posts a message with attached files,
2396+ # the message event comes with this subtype.
2397+ "file_share",
23922398 ),
23932399 }
23942400 primary_matcher = builtin_matchers.message_event(
@@ -3831,6 +3837,9 @@ <h2 id="args">Args</h2>
38313837 # If an end-user posts a message with "Also send to #channel" checked,
38323838 # the message event comes with this subtype.
38333839 "thread_broadcast",
3840+ # If an end-user posts a message with attached files,
3841+ # the message event comes with this subtype.
3842+ "file_share",
38343843 ),
38353844 }
38363845 primary_matcher = builtin_matchers.message_event(
0 commit comments