mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
14 lines
292 B
Ruby
14 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|