2019-05-31 09:54:11 +02:00
|
|
|
class CustomWizard::ApiSerializer < ApplicationSerializer
|
2019-06-02 12:54:31 +02:00
|
|
|
attributes :name,
|
|
|
|
:title,
|
2019-05-31 09:54:11 +02:00
|
|
|
:authorization,
|
|
|
|
:endpoints
|
|
|
|
|
|
|
|
def authorization
|
2019-06-02 12:54:31 +02:00
|
|
|
if authorization = CustomWizard::Api::Authorization.get(object.name)
|
|
|
|
CustomWizard::Api::AuthorizationSerializer.new(
|
|
|
|
authorization,
|
|
|
|
root: false
|
|
|
|
)
|
|
|
|
end
|
2019-05-31 09:54:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def endpoints
|
2019-06-02 12:54:31 +02:00
|
|
|
if endpoints = CustomWizard::Api::Endpoint.list
|
|
|
|
ActiveModel::ArraySerializer.new(
|
|
|
|
endpoints,
|
|
|
|
each_serializer: CustomWizard::Api::EndpointSerializer
|
|
|
|
)
|
|
|
|
end
|
2019-05-31 09:54:11 +02:00
|
|
|
end
|
|
|
|
end
|