converted all auth functions to use mongoose

This commit is contained in:
Sahat Yalkabov
2013-11-13 22:19:37 -05:00
parent cd1af7e230
commit 56eb0e4e73
56 changed files with 9769 additions and 1526 deletions

5
controllers/api.js Normal file
View File

@ -0,0 +1,5 @@
exports.name = function (req, res) {
res.json({
name: 'Bob'
});
};