Files
writebook/app/helpers/forms_helper.rb

9 lines
224 B
Ruby

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