diff --git a/lms/djangoapps/bulk_email/admin.py b/lms/djangoapps/bulk_email/admin.py index 2599e5f334..478f44af25 100644 --- a/lms/djangoapps/bulk_email/admin.py +++ b/lms/djangoapps/bulk_email/admin.py @@ -57,19 +57,11 @@ unsupported tags will cause email sending to fail. ''' }), ) - # Turn off the action bar (we have no bulk actions) - actions = None def has_add_permission(self, request): """Enable the ability to add new templates, as we want to be able to define multiple templates.""" return True - def has_delete_permission(self, request, obj=None): - """ - Disables the ability to remove existing templates, as we'd like to make sure we don't have dangling references. - """ - return False - class CourseAuthorizationAdmin(admin.ModelAdmin): """Admin for enabling email on a course-by-course basis."""