Hello everyone !
We have a running openedx on Kubernetes, and we would like to expand the search function.
We tried this :
"COURSE_DISCOVERY_FILTERS" : [
"subjects",
"org",
"language",
"modes"
]
When we perform a search the result from Ajax call to /search/course_discovery/ is the following :
facets: {org: {other: 0, total: 5, terms: {XXX-: 2, XXX: 1, XXX: 2}},…}
language: {other: 0, total: 5, terms: {en: 2, fr: 3}}
modes: {other: 0, total: 5, terms: {audit: 5}}
org: {other: 0, total: 5, terms: {XXX-: 2, XXX: 1, XXX: 2}}
subjects: {other: 0, total: 0, terms: {}}
The “subjects” object is empty, but we can’t find anything on Studio where to put the course subject ! Following this link to edx docs there are some guidelines for subject.
Any tips on how to enable the subjects ?
Thanks !