d29bfb9f5a
- 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
10 lines
231 B
Ruby
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
|