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/custom_wizard/api_serializer.rb

35 Zeilen
815 B
Ruby

2019-10-03 07:17:21 +02:00
class CustomWizard::ApiSerializer < ::ApplicationSerializer
attributes :name,
:title,
2019-05-31 09:54:11 +02:00
:authorization,
2019-06-06 18:10:13 +02:00
:endpoints,
:log
2019-05-31 09:54:11 +02:00
def authorization
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-03 09:09:24 +02:00
if endpoints = CustomWizard::Api::Endpoint.list(object.name)
ActiveModel::ArraySerializer.new(
endpoints,
each_serializer: CustomWizard::Api::EndpointSerializer
)
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)
ActiveModel::ArraySerializer.new(
log,
each_serializer: CustomWizard::Api::LogSerializer
)
end
end
2019-05-31 09:54:11 +02:00
end