()
| 14 | module.exports = (Course = (function () { |
| 15 | Course = class Course extends CocoModel { |
| 16 | static initClass () { |
| 17 | this.className = 'Course' |
| 18 | this.schema = schema |
| 19 | this.prototype.urlRoot = '/db/course' |
| 20 | |
| 21 | this.SALES_CALL_ACCESS_LEVEL = 'sales-call' |
| 22 | } |
| 23 | |
| 24 | fetchForCourseInstance (courseInstanceID, opts) { |
| 25 | const options = { |