From a25e413fdb1bf714b55d67633ac80084b6541ec8 Mon Sep 17 00:00:00 2001 From: Diana Huang Date: Wed, 9 Oct 2013 15:42:45 -0400 Subject: [PATCH] Fix settings for verification statuses on the student dashboard --- cms/envs/common.py | 5 +++++ lms/envs/common.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index 8d28ddcd8d..cd3c11cfaf 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -418,6 +418,11 @@ MKTG_URL_LINK_MAP = { COURSES_WITH_UNSAFE_CODE = [] +################# Student Verification ################# +VERIFY_STUDENT = { + "DAYS_GOOD_FOR": 365, # How many days is a verficiation good for? +} + ############################## EVENT TRACKING ################################# TRACK_MAX_EVENT = 10000 diff --git a/lms/envs/common.py b/lms/envs/common.py index 20e2f012b7..96ad98779e 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -1023,7 +1023,7 @@ def enable_theme(theme_name): ################# Student Verification ################# VERIFY_STUDENT = { - "DAYS_GOOD_FOR" : 365, # How many days is a verficiation good for? + "DAYS_GOOD_FOR": 365, # How many days is a verficiation good for? } ######################## CAS authentication ###########################