({ levelSlug, startDay, endDay }, options)
| 13 | // startDay optional |
| 14 | // endDay optional |
| 15 | getCommon ({ levelSlug, startDay, endDay }, options) { |
| 16 | if (options == null) { options = {} } |
| 17 | return fetchJson('/db/user.code.problem/-/common_problems', _.assign({}, options, { |
| 18 | method: 'POST', |
| 19 | json: { slug: levelSlug, startDay, endDay } |
| 20 | })) |
| 21 | } |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected