(username)
| 555 | */ |
| 556 | |
| 557 | const fetchUserCompletedTasks = async (username) => { |
| 558 | return await fetchUserTasks(username, [OLD_COMPLETED, COMPLETED]); |
| 559 | }; |
| 560 | |
| 561 | /** |
| 562 | * Fetch all overdue tasks |
nothing calls this directly
no test coverage detected