({ userID }, options)
| 108 | }, |
| 109 | |
| 110 | resetProgress ({ userID }, options) { |
| 111 | if (options == null) { options = {} } |
| 112 | return fetchJson(`/db/user/${userID}/reset_progress`, _.assign({}, options, { |
| 113 | method: 'POST' |
| 114 | })) |
| 115 | }, |
| 116 | |
| 117 | exportData ({ userID }, options) { |
| 118 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected