mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-07-13 11:19:08 +09:00
df76a227dc
First open source release of Campfire 🎉
9 lines
224 B
Ruby
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
|