mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
313 B
Ruby
16 lines
313 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class EnterpriseSerializer < BaseSerializer
|
|
attributes :id, :name
|
|
|
|
has_many :customers, links: {
|
|
related: ->(object) {
|
|
url_helpers.api_v1_enterprise_customers_url(enterprise_id: object.id)
|
|
}
|
|
}
|
|
end
|
|
end
|
|
end
|