1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/cart_item/subscription.rb
2021-04-22 19:24:08 +02:00

18 lines
343 B
Ruby

# frozen_string_literal: true
# A subscription added to the shopping cart
class CartItem::Subscription < CartItem::BaseItem
def initialize(plan)
raise TypeError unless plan.class == Plan
@plan = plan
end
def price
amount = @plan.amount
elements = { plan: amount }
{ elements: elements, amount: amount }
end
end