Remove "delete course" permission from teacher

Jump to solution
delester
Community Novice

I am the Canvas admin at my institution. I have had two recent incidents where teachers abruptly deleted their courses from Canvas. How do I remove the "delete course" permission from the teacher role?

1 Solution
delester
Community Novice

I'm no good at javascript, but pretty good with CSS. Here's how I solved it in our CSS overrides file:

/* hide the "Permanently Delete this Course" button to prevent teachers from deleting courses */

#right-side a:nth-of-type(5n).delete_course_link {

  display:none;

  }

Thanks to those who helped.

View solution in original post