Files
fizzy/saas/app/models/account/billing_waiver.rb
T
2025-12-18 10:04:15 +01:00

8 lines
178 B
Ruby

class Account::BillingWaiver < SaasRecord
belongs_to :account
def subscription
@subscription ||= Account::Subscription.new(plan: Plan.paid_with_extra_storage)
end
end