mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
docs: Add commas to list of event types supported by integrations.
Fixes #23219.
This commit is contained in:
@@ -4,7 +4,9 @@ either `&only_events=["event_a","event_b"]` or `&exclude_events=["event_a","even
|
||||
|
||||
Below are the events that {{ integration_display_name }} bot supports:
|
||||
|
||||
{% for event_type in all_event_types %} `{{ event_type }}` {% endfor %}
|
||||
{% set comma = joiner(", ") %}
|
||||
|
||||
{% for event_type in all_event_types %} {{- comma() -}} `{{ event_type }}` {% endfor %}
|
||||
|
||||
Note that you can also use UNIX-style wildcards like `*` to include
|
||||
multiple events. E.g., `test*` matches every event that starts with
|
||||
|
||||
Reference in New Issue
Block a user