forked from e621ng/e621ng
11 lines
218 B
Ruby
11 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomFormBuilder < SimpleForm::FormBuilder
|
|
def input(attribute_name, options = {}, &)
|
|
options = insert_autocomplete(options)
|
|
super
|
|
end
|
|
|
|
include FormBuilderCommon
|
|
end
|