mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
22 lines
373 B
Ruby
22 lines
373 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.is_a? Plan
|
|
|
|
@plan = plan
|
|
end
|
|
|
|
def price
|
|
amount = @plan.amount
|
|
elements = { plan: amount }
|
|
|
|
{ elements: elements, amount: amount }
|
|
end
|
|
|
|
def name
|
|
@plan.name
|
|
end
|
|
end
|