({ userID, campaignSlug }, options)
| 96 | }, |
| 97 | |
| 98 | getCourseInstances ({ userID, campaignSlug }, options) { |
| 99 | if (options == null) { options = {} } |
| 100 | return fetchJson(this.url(userID, 'course-instances'), _.merge({}, options, { |
| 101 | data: { userID, campaignSlug } |
| 102 | })) |
| 103 | }, |
| 104 | |
| 105 | getLevelSessions ({ userID }, options) { |
| 106 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected