mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-26 02:33:03 -04:00
9 lines
267 B
Ruby
9 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
module EditableFormHelper
|
|
def editable(field_type, model, field, display_field:, collection: [])
|
|
render 'shared/editable/form', field_type:,
|
|
model:, field:, display_field:, collection:
|
|
end
|
|
end
|