aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/hidden_field.rb
blob: e014bd3aeffd9941a8d3a84df0de2ab69d66f1a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class HiddenField < TextField # :nodoc:
      end
    end
  end
end