Commit 8e5d6bd4 by John Jarvis Committed by Carlos Andrés Rocha

Change 'remove' to 'delete' for consistency

parent 8d628ef2
...@@ -114,8 +114,8 @@ class XQueueCertInterface(object): ...@@ -114,8 +114,8 @@ class XQueueCertInterface(object):
contents = { contents = {
'action': 'regen', 'action': 'regen',
'remove_verify_uuid': cert.verify_uuid, 'delete_verify_uuid': cert.verify_uuid,
'remove_download_uuid': cert.download_uuid, 'delete_download_uuid': cert.download_uuid,
'username': cert.user.username, 'username': cert.user.username,
'course_id': cert.course_id, 'course_id': cert.course_id,
'name': profile.name, 'name': profile.name,
...@@ -160,9 +160,9 @@ class XQueueCertInterface(object): ...@@ -160,9 +160,9 @@ class XQueueCertInterface(object):
cert.status = status.deleting cert.status = status.deleting
contents = { contents = {
'action': 'remove', 'action': 'delete',
'remove_verify_uuid': cert.verify_uuid, 'delete_verify_uuid': cert.verify_uuid,
'remove_download_uuid': cert.download_uuid, 'delete_download_uuid': cert.download_uuid,
'username': cert.user.username, 'username': cert.user.username,
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment