class Vindi::Product

Products

@example Active productts

products = Vindi::Product.active

@example Create a product

palantir = Vindi::Product.new.tap do |p|
  p.code = "palantir"
  p.name = "Palantir"
  p.description = "The Twitch of Istari folk"
  p.pricing_schema = { price: 42.42 }
  p.save
end