Is there a way to add a Staff Member to all courses in an organization?
Another question, is the Admin Role permissions applied over a unique course or all in the Studio?
Staff and admin roles configured in Studio are per-course roles. It’s not possible to set to an organization. We should not confuse these course roles with the global admin role configured to the user in Django.
If you set a user as Superuser in Django, then it will have full access to all courses in all organizations in the LMS and Studio. But I’m not sure if this is what you want.
I want to add a Staff Member to an organization. All current courses in the organization this user will be able to edit and new courses in the organization will be able to edit.
I don’t want to have to add this user to a course every time a new course is created.
In the other organizations, this user won’t be able to do anything.
Okay, I’m going to write about something that I don’t think is properly documented, and I’m doing it half from memory because I don’t have the time to really test it right now. So please make a test user and try this out before telling your users about it.
There is an OrgStaffRole in the system, which I think has the behavior you want. You get one of these by going to the Django admin section for “Course access roles” and then creating a new role that has:
the email of the person
a blank Course ID
the Org needed
the role dropdown set to “staff”
We’ve had this in the system for a very long time, but there’s never been a decent UI around it, and I’m not sure how good the support across features is.
On a related note, there’s now also a org-level Waffle flag (as a complement to the course waffle flags we’ve had for ages), which lets you toggle waffle flag features by organization instead of just globally or by course. We’re incrementally getting things to make org-level management a little less painful.
@Andres.Aulasneo this seems like it would be a great new how-to for us to add to the new documentation site. It sounds like the audience would be “Site Operators” and this would be a “How to make a user Staff in all courses for an Organization”
Man I wish we had org-level staff control for edx.org partners. We have over 800 course instances.
I ended up writing a Selenium-based Python script to open up course staff pages and add/remove folks. Here it is in case anyone wants to adapt it to your own purposes.
We managed to remove about 40 people and add half a dozen to 817 courses in about 13 hours. Would have taken days to do it with the tools available to us.