Files
fizzy/app/helpers/forms_helper.rb
T
2025-06-24 12:17:08 +02:00

13 lines
309 B
Ruby

module FormsHelper
def auto_submit_form_with(**attributes, &)
data = attributes.delete(:data) || {}
data[:controller] = "auto-submit #{data[:controller]}".strip
if block_given?
form_with **attributes, data: data, &
else
form_with(**attributes, data: data) { }
end
end
end