Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-14 13:52:54 +01:00
13 Zeilen
370 B
Ruby
13 Zeilen
370 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::BasicApiSerializer < ::ApplicationSerializer
|
|
attributes :name, :title, :endpoints
|
|
|
|
def endpoints
|
|
if endpoints = CustomWizard::Api::Endpoint.list(object.name)
|
|
ActiveModel::ArraySerializer.new(
|
|
endpoints,
|
|
each_serializer: CustomWizard::Api::BasicEndpointSerializer,
|
|
)
|
|
end
|
|
end
|
|
end
|