Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
26 Zeilen
Kein EOL
581 B
Ruby
26 Zeilen
Kein EOL
581 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::ProSerializer < ApplicationSerializer
|
|
attributes :server,
|
|
:authentication,
|
|
:subscription
|
|
|
|
def server
|
|
CustomWizard::ProSubscription::SUBSCRIPTION_SERVER
|
|
end
|
|
|
|
def authentication
|
|
if object.authentication
|
|
CustomWizard::ProAuthenticationSerializer.new(object.authentication, root: false)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def subscription
|
|
if object.subscription
|
|
CustomWizard::ProSubscriptionSerializer.new(object.subscription, root: false)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
end |