Skip to content

Commit d7dba4d

Browse files
committed
Update comments
1 parent b0ed494 commit d7dba4d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

api/controller.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ router.post("/update", AuthApiKey, validator.add, (req, res) => {
2626
return res.json(result);
2727
});
2828

29-
// Send your proxy email data in json format to be delete
29+
// Send your proxy email data to be deleted
3030
router.get("/delete/:email", AuthApiKey, (req, res) => {
3131
const result = model.delete(req.params);
3232

3333
return res.json(result);
3434
});
3535

36+
// Clear users.csv file
3637
router.get("/clear", AuthApiKey, (req, res) => {
3738
const result = model.clear();
3839

0 commit comments

Comments
 (0)