Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
22 Zeilen
470 B
Ruby
22 Zeilen
470 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::Subscription::Subscription
|
|
include ActiveModel::Serialization
|
|
|
|
attr_reader :type,
|
|
:updated_at
|
|
|
|
def initialize(subscription)
|
|
if subscription
|
|
@type = subscription.type
|
|
@updated_at = subscription.updated_at
|
|
end
|
|
end
|
|
|
|
def types
|
|
%w(core advanced business)
|
|
end
|
|
|
|
def active?
|
|
types.include?(type) && updated_at.to_datetime > (Time.zone.now - 2.hours).to_datetime
|
|
end
|
|
end
|