Sha256: 298b6e5aaad16d07b88ee7d6f4180ceca5235b49fbceda03c7c80ff61929e722

Contents?: true

Size: 1.55 KB

Versions: 130

Compression:

Stored size: 1.55 KB

Contents

<%= form_with model: endpoint, url: (endpoint.persisted? ? [:account, endpoint] : [:account, @parent, :webhooks_outgoing_endpoints]), local: true, class: 'form' do |form| %>
  <%= render 'account/shared/forms/errors', form: form %>

  <% with_field_settings form: form do %>
    <%= render 'shared/fields/text_field', method: :name, options: {autofocus: true} %>
    <%= render 'shared/fields/text_field', method: :url %>
    <% unless I18n.t("webhooks/outgoing/endpoints.fields.api_version.options").keys.one? %>
      <%= render 'shared/fields/super_select', method: :api_version %>
    <% end %>
    <%= render 'shared/fields/super_select', method: :event_type_ids, html_options: {multiple: true},
      choices: @endpoint.valid_event_types.map { |event_type| [event_type.label_string, event_type.id] } %>
    <%= render 'shared/fields/super_select', method: :scaffolding_absolutely_abstract_creative_concept_id,
      choices: [['None', '']] + @endpoint.creative_concepts.map { |event_type| [event_type.name, event_type.id] }, other_options: {search: true} %>
    <%# 🚅 super scaffolding will insert new fields above this line. %>
  <% end %>

  <div class="buttons">
    <%= form.submit (form.object.persisted? ? t('.buttons.update') : t('.buttons.create')), class: "button" %>
    <% if form.object.persisted? %>
    <%= link_to t('global.buttons.cancel'), [:account, endpoint], class: "button-secondary" %>
    <% else %>
    <%= link_to t('global.buttons.cancel'), [:account, @parent, :webhooks_outgoing_endpoints], class: "button-secondary" %>
    <% end %>
  </div>

<% end %>

Version data entries

130 entries across 130 versions & 1 rubygems

Version Path
bullet_train-outgoing_webhooks-1.4.1 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.4.0 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.25 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.24 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.23 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.22 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.21 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.20 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.19 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.18 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.17 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.16 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.15 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.14 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.13 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.12 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.11 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.10 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.9 app/views/account/webhooks/outgoing/endpoints/_form.html.erb
bullet_train-outgoing_webhooks-1.3.8 app/views/account/webhooks/outgoing/endpoints/_form.html.erb