notebook/app/models/billing/billing_plan.rb
2021-05-24 13:32:15 -07:00

5 lines
94 B
Ruby

class BillingPlan < ApplicationRecord
FREE_IDS = [1]
PREMIUM_IDS = [2, 3, 4, 5, 6]
end