Method: Form#hide
- Defined in:
- lib/make/form.rb
#hide(columns) ⇒ Object
hide array of specific fields that should not be submitted through
36 37 38 39 40 41 |
# File 'lib/make/form.rb', line 36 def hide columns columns.each do |col| @potential_keys_to_ignore.push(col.to_s) end return self end |