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

15 Zeilen
361 B
Ruby

2019-05-31 09:54:11 +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