From 6dfa81e58a1966b224b136ddd170e39a475c503b Mon Sep 17 00:00:00 2001 From: Matt Drayer Date: Wed, 14 Oct 2015 12:32:08 -0400 Subject: [PATCH] mattdrayer/update-gencert-modes: Added prof-ed modes to set --- lms/djangoapps/certificates/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/certificates/models.py b/lms/djangoapps/certificates/models.py index 5e2e8f416e..beada39f69 100644 --- a/lms/djangoapps/certificates/models.py +++ b/lms/djangoapps/certificates/models.py @@ -109,7 +109,7 @@ class CertificateWhitelist(models.Model): class GeneratedCertificate(models.Model): - MODES = Choices('verified', 'honor', 'audit') + MODES = Choices('verified', 'honor', 'audit', 'professional', 'no-id-professional') VERIFIED_CERTS_MODES = [CourseMode.VERIFIED, CourseMode.CREDIT_MODE]