Files
fizzy/app/views/webhooks/form/_actions.html.erb
T
2025-09-16 20:03:57 +02:00

17 lines
337 B
Plaintext

<ul>
<%= form.collection_check_boxes \
:subscribed_actions,
Webhook::PERMITTED_ACTIONS,
:itself,
:humanize do |item| %>
<li>
<label>
<span>
<%= item.check_box %>
</span>
<span><%= item.text %></span>
</label>
</li>
<% end %>
</ul>