Files
fizzy/app/models/subscription.rb
T
Mike Dalessio d29bfb9f5a Add a QB API endpoint for plans
- add the shared api token to all environments
- add a single FreeV1 subscription
- add QB routes
- allow the queenbee routes in the tenanting middleware

ref: https://3.basecamp.com/2914079/buckets/37331921/todos/8746302763
2025-06-20 15:16:57 -04:00

10 lines
231 B
Ruby

class Subscription < Queenbee::Subscription
SHORT_NAMES = %w[ FreeV1 ]
end
class FreeV1Subscription < Subscription
property :proper_name, "Free Subscription"
property :price, 0
property :frequency, "yearly"
end