(options, other)
| 15 | }, |
| 16 | |
| 17 | getAll (options, other) { |
| 18 | if (options == null) { options = {} } |
| 19 | let url = '/db/course' |
| 20 | if (other) { |
| 21 | url = '/' + other + url |
| 22 | } |
| 23 | return fetchJson(url, options) |
| 24 | }, |
| 25 | |
| 26 | getReleased (options) { |
| 27 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected