2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2019-10-03 07:17:21 +02:00
|
|
|
class CustomWizard::ApiSerializer < ::ApplicationSerializer
|
2024-10-16 13:52:03 +02:00
|
|
|
attributes :name, :title, :authorization, :endpoints, :log
|
2019-05-31 09:54:11 +02:00
|
|
|
|
|
|
|
def authorization
|
2019-06-02 12:54:31 +02:00
|
|
|
if authorization = CustomWizard::Api::Authorization.get(object.name)
|
2024-10-16 13:52:03 +02:00
|
|
|
CustomWizard::Api::AuthorizationSerializer.new(authorization, root: false)
|
2019-06-02 12:54:31 +02:00
|
|
|
end
|
2019-05-31 09:54:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def endpoints
|
2019-06-03 09:09:24 +02:00
|
|
|
if endpoints = CustomWizard::Api::Endpoint.list(object.name)
|
2019-06-02 12:54:31 +02:00
|
|
|
ActiveModel::ArraySerializer.new(
|
2024-10-16 13:52:03 +02:00
|
|
|
endpoints,
|
|
|
|
each_serializer: CustomWizard::Api::EndpointSerializer,
|
2019-06-02 12:54:31 +02:00
|
|
|
)
|
|
|
|
end
|
2019-05-31 09:54:11 +02:00
|
|
|
end
|
2019-06-06 18:10:13 +02:00
|
|
|
|
|
|
|
def log
|
|
|
|
if log = CustomWizard::Api::LogEntry.list(object.name)
|
2024-10-16 13:52:03 +02:00
|
|
|
ActiveModel::ArraySerializer.new(log, each_serializer: CustomWizard::Api::LogSerializer)
|
2019-06-06 18:10:13 +02:00
|
|
|
end
|
|
|
|
end
|
2019-05-31 09:54:11 +02:00
|
|
|
end
|