Skip to content

Commit

Permalink
removed trailing slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrichardsmith committed Aug 18, 2016
1 parent f030123 commit a84e170
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/user/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
});

app.get("/user/customers", function (req, res, next) {
helpers.simpleHttpRequest(endpoints.userCustUrl + "/", res, next);
helpers.simpleHttpRequest(endpoints.userCustUrl, res, next);
});
app.get("/user/addresses", function (req, res, next) {
helpers.simpleHttpRequest(endpoints.userAddrUrl + "/", res, next);
helpers.simpleHttpRequest(endpoints.userAddrUrl, res, next);
});
app.get("/user/cards", function (req, res, next) {
helpers.simpleHttpRequest(endpoints.userCardUrl + "/", res, next);
helpers.simpleHttpRequest(endpoints.userCardUrl, res, next);
});
// Create Customer - TO BE USED FOR TESTING ONLY (for now)
app.post("/user/customers", function(req, res, next) {
Expand Down

0 comments on commit a84e170

Please sign in to comment.