({ courseInstanceID }, options)
| 20 | }, |
| 21 | |
| 22 | getSessions ({ courseInstanceID }, options) { |
| 23 | if (options == null) { options = {} } |
| 24 | const userID = options?.userID || me.id |
| 25 | return fetchJson(`/db/course_instance/${courseInstanceID}/course-level-sessions/${userID}`, options) |
| 26 | }, |
| 27 | |
| 28 | getMyCourseInstanceSessions ({ courseInstanceID }, options = {}) { |
| 29 | return fetchJson(`/db/course_instance/${courseInstanceID}/course-level-sessions/${me.id}`, options) |
nothing calls this directly
no outgoing calls
no test coverage detected