Module: AutoStrongParameters::AutoFormParams

Extended by:
ActiveSupport::Concern
Defined in:
lib/auto_strong_parameters/auto_form_params.rb

Constant Summary collapse

ASP_NAME_REGEX =
/\sname=\"(.+?)\"/
ASP_DIGIT_REGEX =
/\[\d+\]/
TRACKED_FIELDS =
%w(
  check_box
  collection_check_boxes
  collection_radio_buttons
  collection_select
  color_field
  date_field
  datetime_field
  datetime_local_field
  email_field
  file_field
  grouped_collection_select
  grouped_collection_select
  hidden_field
  month_field
  number_field
  password_field
  phone_field
  radio_button
  range_field
  rich_text_area
  search_field
  select
  telephone_field
  text_area
  text_field
  time_field
  time_zone_select
  trix_editor
  url_field
  week_field
)