Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
6 Zeilen
Kein EOL
304 B
Ruby
6 Zeilen
Kein EOL
304 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::ProSerializer < ApplicationSerializer
|
|
attributes :server
|
|
has_one :authentication, serializer: CustomWizard::ProAuthenticationSerializer, embed: :objects
|
|
has_one :subscription, serializer: CustomWizard::ProSubscriptionSerializer, embed: :objects
|
|
end |