Skip to content

Commit

Permalink
Updated empty response
Browse files Browse the repository at this point in the history
So it isnt so empty
  • Loading branch information
nathaniel-fargo committed Feb 1, 2020
1 parent 2663cf6 commit 1bd664c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions routes/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ var express = require("express"),

router.post("/register", function(req, res) {
// TODO
sendJSON(res, "error", { message "Not Yet Implemented" }, 301);
});

router.post("/login", function(req, res) {
// TODO
sendJSON(res, "error", { message "Not Yet Implemented" }, 301);
});

router.get("/user/:id", function(req, res) {
// TODO
sendJSON(res, "error", { message "Not Yet Implemented" }, 301);
});

module.exports = router;

0 comments on commit 1bd664c

Please sign in to comment.