<% @page_title = @webhook.name %> <% content_for :header do %>
<%= back_link_to @page_title, @webhook, "keydown.left@document->hotkey#click" %>
<% end %>
<%= form_with model: @webhook, url: @webhook, method: :put, data: { controller: "form" }, html: { class: "flex flex-column gap" } do |form| %>

<%= form.text_field :name, required: true, autofocus: true, class: "input full-width", placeholder: "Name your Webhook…", data: { action: "keydown.esc@document->form#cancel" } %>

<%= form.label :actions do %> Events

Trigger a call to the Payload URL when these things occur:

<% end %> <%= render "webhooks/form/actions", form: form %>
<%= form.button type: :submit, class: "btn btn--link center txt-medium" do %> Save Changes <% end %> <%= link_to "Go back", board_webhooks_path, data: { form_target: "cancel" }, hidden: true %> <% end %>