(options, courseID)
| 36 | } |
| 37 | |
| 38 | constructor (options, courseID) { |
| 39 | super(options) |
| 40 | this.courseID = courseID |
| 41 | this.course = new Course({ _id: this.courseID }) |
| 42 | this.course.saveBackups = true |
| 43 | this.supermodel.loadModel(this.course) |
| 44 | } |
| 45 | |
| 46 | onLoaded () { |
| 47 | super.onLoaded() |
nothing calls this directly
no outgoing calls
no test coverage detected