mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-12 23:27:48 +00:00
14 lines
260 B
Ruby
14 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PermittedAttributes
|
|
class BusinessAddress
|
|
def self.attributes
|
|
[
|
|
:company, :address1, :address2,
|
|
:city, :country_id, :state_id, :zipcode,
|
|
:phone, :_destroy, :id
|
|
]
|
|
end
|
|
end
|
|
end
|