Files
zulip/web/templates/settings/edit_outgoing_webhook_service.hbs
Tim Abbott 5cfa8b4dc2 settings: Consistently describe Slack-compatible webhook format.
Previously, the settings edit UI used a different phrasing, and "Slack
compatible" used a dash only in the documentation.

We settle on "Slack-compatible", since that's what we use for the
similar incoming webhook format.
2025-06-27 11:31:59 -07:00

13 lines
706 B
Handlebars

<div class="input-group">
<label for="edit_service_base_url">{{t "Endpoint URL" }}</label>
<input id="edit_service_base_url" type="text" name="service_payload_url" class="edit_service_base_url required modal_text_input"value="{{service.base_url}}" maxlength=2083 />
<div><label for="edit_service_base_url" generated="true" class="text-error"></label></div>
</div>
<div class="input-group">
<label for="edit_service_interface">{{t "Webhook format" }}</label>
<select id="edit_service_interface" class="modal_select bootstrap-focus-style" name="service_interface">
<option value="1">Zulip</option>
<option value="2">{{t "Slack-compatible" }}</option>
</select>
</div>