diff options
Diffstat (limited to 'src/api/axios_methods.js')
-rw-r--r-- | src/api/axios_methods.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/api/axios_methods.js b/src/api/axios_methods.js index 68f119f..8748cb7 100644 --- a/src/api/axios_methods.js +++ b/src/api/axios_methods.js @@ -47,3 +47,16 @@ export function edit_todo_function() { } }; } + +// removeToDo(). +export function remove_todo_function() { + // Remove an existing to do by its id. + // DELETE "/todos/{id}" + return async (data) => { + try { + await api.delete(`/todos/${data.id}`); + } catch (err) { + console.log(err); + } + }; +} |