(title)
| 12 | } |
| 13 | |
| 14 | async function markIncomplete(title) { |
| 15 | const data = await (await axios.get(`${API_URL}/mark_incomplete(${title})`)).data; |
| 16 | return data.message; |
| 17 | } |
| 18 | async function markComplete(title) { |
| 19 | const data = await (await axios.get(`${API_URL}/mark_complete(${title})`)).data |
| 20 | return data.message; |
nothing calls this directly
no outgoing calls
no test coverage detected