Files
openfoodnetwork/app/services/permitted_attributes/address.rb
2020-03-21 16:49:26 +00:00

12 lines
261 B
Ruby

module PermittedAttributes
class Address
def self.attributes
[
:firstname, :lastname, :address1, :address2,
:city, :country_id, :state_id, :zipcode,
:phone, :state_name, :alternative_phone, :company
]
end
end
end