1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/lib/simple_form/inputs/hidden_input.rb

18 lines
285 B
Ruby
Raw Normal View History

module SimpleForm
module Inputs
class HiddenInput < Base
disable :label, :errors, :hint, :required
def input
@builder.hidden_field(attribute_name, input_html_options)
end
private
def required_class
nil
end
end
end
end