Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-26 02:50:28 +01:00
19 Zeilen
465 B
Ruby
19 Zeilen
465 B
Ruby
class CustomWizard::ApiSerializer < ApplicationSerializer
|
|
attributes :service,
|
|
:authorization,
|
|
:endpoints
|
|
|
|
def authorization
|
|
CustomWizard::Api::AuthorizationSerializer.new(
|
|
CustomWizard::Api::Authorization.get(object.service),
|
|
root: false
|
|
)
|
|
end
|
|
|
|
def endpoints
|
|
ActiveModel::ArraySerializer.new(
|
|
CustomWizard::Api::Endpoint.list,
|
|
each_serializer: CustomWizard::Api::EndpointSerializer
|
|
)
|
|
end
|
|
end
|