Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-08 19:38:00 +01:00
15 Zeilen
393 B
Ruby
15 Zeilen
393 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
|