mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +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
|