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
|