lib/app_manager/client/plans.rb in app_manager-2.0.0 vs lib/app_manager/client/plans.rb in app_manager-2.2.0

- old
+ new

@@ -41,19 +41,23 @@ def has_plan(shop_domain, plan_id, trial_activated_at, grandfathered) get("/has-plan?shop_domain=#{shop_domain}&plan_id=#{plan_id}&trial_activated_at=#{trial_activated_at}&grandfathered=#{grandfathered}") end - def get_promotional_discount(shop_domain = nil, code_type, code, reinstall) - get("/discount?shop_domain=#{shop_domain}&reinstall=#{reinstall}&code_type=#{code_type}&code=#{code}") + def get_promotional_discount(shop_domain = nil,code) + get("/discount?shop_domain=#{shop_domain}&code=#{code}") end def discount_used(shop_domain, discount_id) post('/use-discount', {shop_domain: shop_domain, discount_id: discount_id.to_i}) end def sync_discount_usage_log(options = {}) post("/use-discount-sync", options) + end + + def get_related_discounted_plans(discount_id) + get("/get-related-discounted-plans?discount_id=#{discount_id}") end end end end \ No newline at end of file