Course_org_filter

it seems it is possible to define more than 1 organization in the course_org_filter but I’m unsure how.

any idea how it should be defined:
“course_org_filter”:“ORG1, ORG2”,

could says this:
for configuration in query:
course_org_filter = configuration.get_value(‘course_org_filter’, )
# The value of ‘course_org_filter’ can be configured as a string representing
# a single organization or a list of strings representing multiple organizations.
if not isinstance(course_org_filter, list):
course_org_filter = [course_org_filter]
if org in course_org_filter:
return configuration

finally found it, it should be passed as:
:[
“ORG1”,
“ORG2”,
“ORG3”
],