mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
18 lines
483 B
Ruby
18 lines
483 B
Ruby
class Api::Admin::CustomerSerializer < ActiveModel::Serializer
|
|
attributes :id, :email, :enterprise_id, :user_id, :code, :tags, :tag_list, :name
|
|
|
|
has_one :ship_address, serializer: Api::AddressSerializer
|
|
has_one :bill_address, serializer: Api::AddressSerializer
|
|
|
|
def tag_list
|
|
object.tag_list.join(",")
|
|
end
|
|
|
|
def tags
|
|
object.tag_list.map do |tag|
|
|
tag_rule_map = options[:tag_rule_mapping][tag]
|
|
tag_rule_map || { text: tag, rules: nil }
|
|
end
|
|
end
|
|
end
|