Files
openfoodnetwork/app/serializers/api/v1/customer_serializer.rb
Matt-Yorkley cc4192047e Fill out customers controller
Add customer serializer
2022-03-02 11:55:46 +11:00

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