Files
openfoodnetwork/app/services/permitted_attributes/business_address.rb
Nihal M. Kelanthodika c6219a47c3 Remove stray space
2021-10-06 15:06:56 +05:30

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