From 7a02324bf1bee4b3491b1a6ae29e4e80c2208fc7 Mon Sep 17 00:00:00 2001 From: "Albert St. Aubin" Date: Wed, 21 Mar 2018 15:45:38 -0400 Subject: [PATCH] Updating the default long term expiration to be 730 days for entitlements [LEARNER-4494] --- common/djangoapps/entitlements/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/entitlements/models.py b/common/djangoapps/entitlements/models.py index 62d2f79be3..5dc44362b4 100644 --- a/common/djangoapps/entitlements/models.py +++ b/common/djangoapps/entitlements/models.py @@ -27,7 +27,7 @@ class CourseEntitlementPolicy(models.Model): Represents the Entitlement's policy for expiration, refunds, and regaining a used certificate """ - DEFAULT_EXPIRATION_PERIOD_DAYS = 450 + DEFAULT_EXPIRATION_PERIOD_DAYS = 730 DEFAULT_REFUND_PERIOD_DAYS = 60 DEFAULT_REGAIN_PERIOD_DAYS = 14