From ec041732d9bb57b85aab0c3150ed3fbacc561f7b Mon Sep 17 00:00:00 2001 From: Leon Liang Date: Fri, 25 Oct 2019 23:14:25 -0400 Subject: [PATCH] reformat --- functions/handlers/topic.js | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/handlers/topic.js b/functions/handlers/topic.js index 498cd18..4d3dc3d 100644 --- a/functions/handlers/topic.js +++ b/functions/handlers/topic.js @@ -34,7 +34,6 @@ exports.getAllTopics = (req, res) => { }; exports.deleteTopic = (req, res) => { - // TODO: handle add and delete by topic id const topic = db.doc(`/topics/${req.params.topicId}`); topic.get().then((doc) => { if (!doc.exists) {