From 3385e063040e81ae04a6e49013b87e5fc7448cfa Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Thu, 18 Oct 2012 12:22:44 -0400 Subject: [PATCH] As per code review, added note that accept_name_change is no longer being used. --- common/djangoapps/student/views.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/common/djangoapps/student/views.py b/common/djangoapps/student/views.py index d163f956ac..55bfc0715a 100644 --- a/common/djangoapps/student/views.py +++ b/common/djangoapps/student/views.py @@ -743,7 +743,12 @@ def accept_name_change_by_id(id): @ensure_csrf_cookie def accept_name_change(request): - ''' JSON: Name change process. Course staff clicks 'accept' on a given name change ''' + ''' JSON: Name change process. Course staff clicks 'accept' on a given name change + + We used this during the prototype but now we simply record name changes instead + of manually approving them. Still keeping this around in case we want to go + back to this approval method. + ''' if not request.user.is_staff: raise Http404