Module: Comable::PermittedAttributes

Defined in:
app/controllers/concerns/comable/permitted_attributes.rb

Instance Method Summary collapse

Instance Method Details

#permitted_address_attributesObject



3
4
5
6
7
8
9
10
11
12
13
14
# File 'app/controllers/concerns/comable/permitted_attributes.rb', line 3

def permitted_address_attributes
  [
    :id,
    :family_name,
    :first_name,
    :zip_code,
    :state_name,
    :city,
    :detail,
    :phone_number
  ]
end