docs: remove TODO which asks a question where the answer is no

TODO posits cache key is not in use, it is used in this file via signal.
This commit is contained in:
Andy Shultz
2023-10-17 14:02:05 -04:00
parent fadc9618d4
commit 2fde582a4d

View File

@@ -287,7 +287,7 @@ class CourseEnrollment(models.Model):
objects = CourseEnrollmentManager()
# cache key format e.g enrollment.<username>.<course_key>.mode = 'honor'
COURSE_ENROLLMENT_CACHE_KEY = "enrollment.{}.{}.mode" # TODO Can this be removed? It doesn't seem to be used.
COURSE_ENROLLMENT_CACHE_KEY = "enrollment.{}.{}.mode"
MODE_CACHE_NAMESPACE = 'CourseEnrollment.mode_and_active'