0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 15:21:11 +02:00
discourse-custom-wizard/app/serializers/custom_wizard/basic_api_serializer.rb

16 Zeilen
393 B
Ruby

2021-03-11 07:30:15 +01:00
# frozen_string_literal: true
2019-10-03 07:17:21 +02:00
class CustomWizard::BasicApiSerializer < ::ApplicationSerializer
2019-06-03 09:09:24 +02:00
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
2019-05-31 09:54:11 +02:00
end