remove demo function call

This commit is contained in:
Annie Sun 2023-03-21 20:26:10 -04:00
parent 4a9a986935
commit fecd9836bd
1 changed files with 2 additions and 2 deletions

View File

@ -82,8 +82,8 @@ let upload = multer({
app.get("/", async (req, res) => {
res.sendFile(path.join(publicDirname, "index.html"));
// TODO: Remove this, only for demo purposes
makePullRequest();
// TODO: Implement this for www
// makePullRequest();
});
app.post("/event", upload.single("poster"), async (req, res) => {