mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-06 02:51:34 +00:00
14 lines
268 B
Ruby
14 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class CustomerSerializer
|
|
include JSONAPI::Serializer
|
|
|
|
attributes :id, :enterprise_id, :name, :code, :email
|
|
|
|
belongs_to :enterprise, record_type: :enterprise, serializer: :id
|
|
end
|
|
end
|
|
end
|