1
0
Fork 0
Dieser Commit ist enthalten in:
Nick Slowinski 2023-10-03 20:25:00 +02:00
Ursprung df456abda0
Commit 6bc33ebd64
Signiert von: nickslowinski
GPG-Schlüssel-ID: A28671573AA347CC

Datei anzeigen

@ -154,14 +154,14 @@ class CustomWizard::Subscription
end
def type
return :business unless subscribed?
return :none unless subscribed?
return :business if business?
return :standard if standard?
return :community if community?
end
def subscribed?
true
standard? || business? || community?
end
def standard?
@ -169,7 +169,7 @@ class CustomWizard::Subscription
end
def business?
product_slug === "business"
true
end
def community?