Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2025-01-23 08:18:59 +01:00
10 Zeilen
209 B
Ruby
10 Zeilen
209 B
Ruby
|
# frozen_string_literal: true
|
||
|
class CustomWizard::ProSubscriptionSerializer < ApplicationSerializer
|
||
|
attributes :type,
|
||
|
:active,
|
||
|
:updated_at
|
||
|
|
||
|
def active
|
||
|
object.active?
|
||
|
end
|
||
|
end
|