aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/password_field.rb
blob: 444ef65074e80d406296559cc56656ef938db185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActionView
  module Helpers
    module Tags # :nodoc:
      class PasswordField < TextField # :nodoc:
        def render
          @options = { value: nil }.merge!(@options)
          super
        end
      end
    end
  end
end