mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
docs: Add commas to list of event types supported by integrations.
Fixes #23219.
This commit is contained in:
parent
98074951ef
commit
6423bbe26f
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user