-
-
Save lohmann/8894e66b199d02128515 to your computer and use it in GitHub Desktop.
Revisions
-
jcdalton2201 revised this gist
Feb 13, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,4 +3,4 @@ var saveInventory = function(req, res) { console.log(body); } server.post('/inventory/:id', saveInventory); -
jcdalton2201 created this gist
Feb 13, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ var saveInventory = function(req, res) { var body = req.body console.log(body); } server.get('/inventory/:id', saveInventory);